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 a35ba8d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 20 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
10 changes: 3 additions & 7 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,6 @@ name: "Release"
# Careful! This pushes a git tag to GitHub! The release itself is private.
on:
workflow_dispatch:
inputs:
tag:
description: >
Tag, which is set by the this GitHub workflow.
Should follow SemVer and is not allowed to exist already.
required: true
type: string

jobs:
build_rcc:
Expand All @@ -25,5 +18,8 @@ jobs:
# adjusted. Currently, everything uses the default branch.

- uses: actions/download-artifact@v4
with:
path: executables/

- run: find .
- run: zip -r executables.zip artifact
17 changes: 6 additions & 11 deletions .github/workflows/robotmk_build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,23 +6,18 @@ 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:
path: ${{ github.workspace }}/target/x86_64-pc-windows-gnu/release/robotmk_scheduler.exe
name: rmk
path: ${{ github.workspace }}/target/x86_64-pc-windows-gnu/release/
if-no-files-found: error

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

0 comments on commit a35ba8d

Please sign in to comment.