Skip to content

Commit

Permalink
ci: use self-hosted agent for packaging
Browse files Browse the repository at this point in the history
WIP.
  • Loading branch information
jacderida committed Jul 12, 2024
1 parent 2d3e4c8 commit 4cd78a8
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/build-release-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,16 @@ env:
PAYMENT_FORWARD_PK: ${{ secrets.STABLE_REWARD_FORWARDING_PK }}

jobs:
test:
name: build
runs-on: self-hosted
steps:
- uses: actions/checkout@v4
with:
ref: ${{ inputs.tag || inputs.branch }}
- shell: bash
run: just build-release-artifacts "x86_64-unknown-linux-musl"

build:
name: build
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -61,11 +71,9 @@ jobs:
artifacts
!artifacts/.cargo-lock
# This job isn't necessary, but it's useful for debugging the packaging process for the real release
# workflow, just in case any issues are ever encountered there.
package:
name: package artifacts
runs-on: ubuntu-latest
runs-on: self-hosted
needs: [build]
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 4cd78a8

Please sign in to comment.