Skip to content

Commit

Permalink
chore: workflow test
Browse files Browse the repository at this point in the history
  • Loading branch information
vitorfdl committed Jun 17, 2024
1 parent fef419b commit ea2bf87
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build-macos-x64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,8 @@ jobs:
# Upload the artifact to the release
- name: Upload to Release
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: ./${{ env.FILENAME }}.tar.gz
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/build-win-x64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,12 @@ jobs:
- name: Install NASM
run: choco install nasm

# Verify NASM installation
- name: Verify NASM installation
run: |
nasm -v
echo $env:PATH
# Build the modules
- name: Build Binary
run: cargo build --verbose --locked --release --target ${{ env.TARGET }}
Expand Down

0 comments on commit ea2bf87

Please sign in to comment.