mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-22 03:30:37 +00:00
87c958b5c1
Checksum not working as the file isn't available in the assets when run in the same job.
22 lines
518 B
YAML
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 .
|