[Automated] Updated signed metadata QR image files (#84) #192
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 Main | |
on: | |
workflow_dispatch: # via manual trigger | |
push: | |
branches: | |
- main | |
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 }} |