Skip to content

Commit

Permalink
Scaffolding gh actions
Browse files Browse the repository at this point in the history
  • Loading branch information
wjthieme committed Aug 1, 2024
1 parent 119bc94 commit 8545702
Showing 1 changed file with 33 additions and 2 deletions.
35 changes: 33 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
npm:
strategy:
matrix:
package: [sdk]
package: []
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
Expand All @@ -30,8 +30,39 @@ jobs:
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

cargo:
strategy:
matrix:
package: []
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Deploy cargo
uses: ./.github/actions/anchor
with:
run: |
export RUST_LOG=
# deploy cargo
verifiable:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Deploy cargo
uses: ./.github/actions/anchor
with:
run: |
export RUST_LOG=
# verifiable build and add to release
release:
needs: [npm]
needs: [npm, cargo, verifiable]
if: ${{ always() }}
runs-on: ubuntu-latest
permissions:
Expand Down

0 comments on commit 8545702

Please sign in to comment.