Skip to content

Commit

Permalink
Merge pull request #2 from OffchainLabs/fix-artifact-refresh
Browse files Browse the repository at this point in the history
fix bug in artifact naming when input specified by containing workflow
  • Loading branch information
kasey authored Jan 8, 2025
2 parents 077732e + 44df7c9 commit 10c36de
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/actions/build-unclog/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,10 @@ runs:
- name: Default binary name
if: ${{ inputs.artifact-name != '' }}
shell: bash
env:
UNCLOG_BINARY_NAME: ${{ inputs.artifact-name }}
run: |
echo "UNCLOG_BINARY_NAME={{ $inputs.artifact-name }}" >> ${GITHUB_ENV}
echo "UNCLOG_BINARY_NAME=${UNCLOG_BINARY_NAME}" >> ${GITHUB_ENV}
- name: Scoped name in PR
if: ${{ inputs.artifact-name == '' && github.event_name == 'pull_request' }}
Expand Down
2 changes: 2 additions & 0 deletions log/kasey_fix-artifact-refresh.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
### Fixed
- fix bug in artifact naming when input specified by containing workflow

0 comments on commit 10c36de

Please sign in to comment.