Soldeer script name change #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Master Push' | |
on: | |
push: | |
branches: | |
- 'master' | |
jobs: | |
cut-release: | |
name: 'Cut Release' | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Install expect' | |
run: sudo apt-get update && sudo apt-get install -y expect | |
- name: Install Foundry | |
uses: foundry-rs/[email protected] | |
- name: 'Run Expect Script' | |
run: expect scripts/soldeer_publish.expect ${{ vars.SOLDEER_EMAIL }} ${{ secrets.SOLDEER_PASSWORD }} | |
- name: 'Check out code' | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.push.head.sha }} | |
fetch-depth: 0 | |
- name: 'Create release' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
set -x | |
short_sha=$(git rev-parse --short ${{ github.sha }}) | |
gh release create ${short_sha} --target ${{ github.sha }} |