Skip to content

Commit

Permalink
test release
Browse files Browse the repository at this point in the history
  • Loading branch information
SoloJacobs committed Mar 8, 2024
1 parent 8c5adec commit e5ffce5
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/rcc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,6 @@ jobs:
fail-on-cache-miss: true
- uses: actions/upload-artifact@v4
with:
path: build
name: rcc
path: build/
if-no-files-found: error
overwrite: true
2 changes: 2 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,7 @@ jobs:
# adjusted. Currently, everything uses the default branch.

- uses: actions/download-artifact@v4
with:
merge-multiple: true

- run: zip -r executables.zip artifact
12 changes: 6 additions & 6 deletions .github/workflows/robotmk_build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,23 +6,23 @@ on:

jobs:
build_robotmk_from_source:
runs-on: windows-latest
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- uses: actions-rust-lang/[email protected]
with:
target: x86_64-pc-windows-gnu

- run: cargo build --target=x86_64-pc-windows-gnu --release
- run: mkdir -p ${{ github.workspace }}/target/x86_64-pc-windows-gnu/release/
- run: touch ${{ github.workspace }}/target/x86_64-pc-windows-gnu/release/robotmk_scheduler.exe
- run: touch ${{ github.workspace }}/target/x86_64-pc-windows-gnu/release/robotmk_agent_plugin.exe

- uses: actions/upload-artifact@v4
with:
name: robotmk_scheduler.exe
path: ${{ github.workspace }}/target/x86_64-pc-windows-gnu/release/robotmk_scheduler.exe
if-no-files-found: error

- uses: actions/upload-artifact@v4
with:
name: robotmk_agent_plugin.exe
path: ${{ github.workspace }}/target/x86_64-pc-windows-gnu/release/robotmk_agent_plugin.exe
if-no-files-found: error

0 comments on commit e5ffce5

Please sign in to comment.