Merge pull request #727 from paritytech/sign-me-2024-03-18 #302
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 🛎 Checkout | |
uses: actions/checkout@v4 | |
- uses: ./.github/workflows/rust-install | |
- name: ⚙ Run verifier | |
run: make verifier | |
- name: ⚙ Run collector | |
run: make collector | |
- uses: ./.github/workflows/deploy | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} |