Skip to content

Commit

Permalink
modified: .github/workflows/master-push.yml
Browse files Browse the repository at this point in the history
- Fix the gh token variable name per documentation
- Dry run with'act'.
- Attempted to clean up providng rpoper tty env for manual inputs to
  soldeer/forge
  • Loading branch information
F-WRunTime committed Oct 8, 2024
1 parent 62756a5 commit bb7ec51
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/master-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,11 @@ jobs:

- name: 'Checkout Code'
uses: actions/checkout@v4

- name: 'Run Expect Script'
run: expect scripts/soldeer_publish.expect ${{ vars.SOLDEER_EMAIL }} ${{ secrets.SOLDEER_PASSWORD }}
shell: bash
run: |
script -q -c "expect scripts/soldeer_publish.expect ${{ vars.SOLDEER_EMAIL }} ${{ secrets.SOLDEER_PASSWORD }}" /dev/null
- name: 'Check out code'
uses: actions/checkout@v3
Expand All @@ -30,7 +32,7 @@ jobs:

- name: 'Create release'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
set -x
short_sha=$(git rev-parse --short ${{ github.sha }})
Expand Down

0 comments on commit bb7ec51

Please sign in to comment.