mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-31 16:21:21 +00:00
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 .
|