Skip to content

Commit

Permalink
fix it
Browse files Browse the repository at this point in the history
Signed-off-by: Rajdeep Malakar <[email protected]>
  • Loading branch information
rustdevbtw authored Jul 15, 2024
1 parent 01da40d commit 577be84
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,8 @@ jobs:
sed -i "s/'MOZ_APP_NAME': 'firefox'/'MOZ_APP_NAME': 'flamewolf'/g" obj-x86_64-pc-linux-gnu/config.status
CC=clang CXX=clang++ ./mach build
./mach package
mv obj-x86_64-pc-linux-gnu/dist/flamewolf*.tar.gz obj-x86_64-pc-linux-gnu/dist/flamewolf-linux.tar.gz || true
- name: Rename Artifacts (Linux)
if: matrix.os == 'ubuntu-latest'
run: mv obj-x86_64-pc-linux-gnu/dist/flamewolf*.tar.gz obj-x86_64-pc-linux-gnu/dist/flamewolf-linux.tar.gz

- name: Upload artifact (Linux)
if: matrix.os == 'ubuntu-latest'
uses: actions/upload-artifact@v4
Expand All @@ -72,6 +69,11 @@ jobs:
needs: build
runs-on: ubuntu-latest
steps:
- name: Ensure artifact exists and rename (Linux)
if: matrix.os == 'ubuntu-latest'
run: |
mv obj-x86_64-pc-linux-gnu/dist/flamewolf*.tar.gz obj-x86_64-pc-linux-gnu/dist/flamewolf-linux.tar.gz || true
- name: Upload release asset (Linux)
uses: actions/upload-release-asset@v1
with:
Expand Down

0 comments on commit 577be84

Please sign in to comment.