Skip to content

Commit

Permalink
create and upload artifcats
Browse files Browse the repository at this point in the history
  • Loading branch information
stlankes committed Sep 14, 2024
1 parent 55b38bd commit 82d6091
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,3 +58,20 @@ jobs:
- name: run (windows)
if: ${{ matrix.os == 'windows-latest' }}
run: pwsh -command ".\$GITHUB_WORKSPACE\test.ps1"

publish:
needs: build
runs-on: ubuntu-latest

steps:
- name: Build release version (i686)
run:
cargo build --target=i686-eduos.json --release
- name: Create artifacts
run: |
mkdir -p i686/stage0
cp target/i686-eduos/release/eduos-rs i686/stage0/
- uses: actions/upload-artifact@v4
with:
name: i686-stage0
path: i686

0 comments on commit 82d6091

Please sign in to comment.