Skip to content

Commit

Permalink
ci: Run build on Ubuntu, fix path
Browse files Browse the repository at this point in the history
  • Loading branch information
pizzaboxer committed Oct 9, 2024
1 parent 1b914c7 commit 95eb287
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
matrix:
configuration: [Debug, Release]

runs-on: windows-latest
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
Expand All @@ -32,20 +32,20 @@ jobs:
with:
name: Bloxstrap.Builder (${{ matrix.configuration }})
path: |
.\Bloxstrap.Builder\bin\${{ matrix.configuration }}\net6.0\publish\win-x64\*
.\Bloxstrap.Builder\bin\${{ matrix.configuration }}\net6.0\win-x64\publish\*
release:
needs: build
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/v')

steps:
- name: Download x64 release artifact
- name: Download release artifact
uses: actions/download-artifact@v4
with:
name: Bloxstrap.Builder (Release)

- name: Zip artifact
- name: Zip release package
run: |
zip -r Bloxstrap.Builder-${{ github.ref_name }}.zip *
Expand Down

0 comments on commit 95eb287

Please sign in to comment.