erigon-pulse/.github/workflows/download-page.yml
Max Revitt 87c958b5c1
fix(release): run download page update separately (#7112)
Checksum not working as the file isn't available in the assets when run
in the same job.
2023-03-16 03:40:42 +00:00

22 lines
518 B
YAML

name: Trigger After Release
on:
workflow_run:
workflows: ["release"]
types:
- completed
jobs:
after_release:
if: ${{ github.event.workflow_run.conclusion == 'success' }}
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Publish downloads
run: |
cd cmd/release
docker buildx build --push --platform linux/amd64 --build-arg GITHUB_TOKEN="${{ secrets.GITHUB_TOKEN }}" -t thorax/download:latest .