Fix typo in GitHub Actions output path (#83) #11
Workflow file for this run
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: Release | |
on: | |
push: | |
tags: | |
- v* | |
jobs: | |
build: | |
uses: ./.github/workflows/build.yml | |
release: | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download build artifact (macOS x86) | |
uses: actions/download-artifact@v4 | |
with: | |
name: gwcli_macos_x86 | |
path: macos_x86 | |
- name: Download build artifact (Linux) | |
uses: actions/download-artifact@v4 | |
with: | |
name: gwcli_linux | |
path: linux | |
- name: Copy and rename artifacts | |
run: | | |
cp macos_x86/gwcli gwcli_macos_x86 | |
cp linux/gwcli gwcli_linux | |
- name: Create release | |
uses: softprops/action-gh-release@v1 | |
with: | |
fail_on_unmatched_files: true | |
files: | | |
gwcli_macos_x86 | |
gwcli_linux |