Skip to content

Commit

Permalink
Update actions workflows to use correct project name
Browse files Browse the repository at this point in the history
  • Loading branch information
JacobMillward committed May 31, 2022
1 parent b7f4839 commit 4c7fe70
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ jobs:
uses: actions/upload-artifact@v3
if: inputs.upload_artifacts && runner.os == 'Windows'
with:
name: omada-backup--${{runner.arch}}-${{ runner.os }}
path: target/release/omada_backup.exe
name: chip8--${{runner.arch}}-${{ runner.os }}
path: target/release/chip8.exe
- name: Upload build artifact (Linux, OSX)
uses: actions/upload-artifact@v3
if: inputs.upload_artifacts && runner.os != 'Windows'
with:
name: omada-backup--${{runner.arch}}-${{ runner.os }}
path: target/release/omada_backup
name: chip8--${{runner.arch}}-${{ runner.os }}
path: target/release/chip8
2 changes: 1 addition & 1 deletion .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
run: |
for dir in *; do
platform=$(echo ${dir#*--} | tr '[:upper:]' '[:lower:']);
zip -r omada_backup-${{github.ref_name}}-$platform.zip $dir/*;
zip -r chip8-${{github.ref_name}}-$platform.zip $dir/*;
rm -r $dir;
done
- name: Release
Expand Down

0 comments on commit 4c7fe70

Please sign in to comment.