Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
leoschwarz committed Nov 4, 2024
1 parent 2399061 commit 250ad36
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/cd_rawrrassembly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,21 @@ jobs:
- name: Pull image
run: docker pull $DOTNET_DOCKER
- name: Build
run: cd inst/rawrrassembly && docker run --rm -v $PWD:/app -w /app $DOTNET_DOCKER dotnet publish --os osx,linux,win -c Release -o out
run: cd inst/rawrrassembly && docker run --rm -v $PWD:/app -w /app $DOTNET_DOCKER /app/build.sh /app /app/out
- name: Publish results
uses: actions/upload-artifact@v4
with:
name: rawrr
path: inst/rawrrassembly/out
verify-linux:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v4
- name: Download results
uses: actions/download-artifact@v4
with:
name: rawrr
- name: Verify
run: tree

0 comments on commit 250ad36

Please sign in to comment.