Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 1 addition & 26 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,38 +5,13 @@ on:
push:
branches: ['main', 'staging']
tags: ['v*']
workflow_run:
workflows: [Releaser]
types:
- completed

env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}

jobs:
prepare_checkout:
if: (
github.repository == 'ipfs/someguy'
|| github.event_name == 'workflow_dispatch'
) && (
github.event_name != 'workflow_run'
|| github.event.workflow_run.conclusion == 'success'
)
name: Decide what ref to check out
runs-on: ubuntu-latest
outputs:
ref: ${{ github.event_name != 'workflow_run' && github.ref || steps.releaser.outputs.version }}
steps:
- name: Inspect triggering Releaser workflow run
id: releaser
if: github.event_name == 'workflow_run'
uses: ipdxco/unified-github-workflows/.github/actions/inspect-releaser@v1.0
with:
artifacts-url: ${{ github.event.workflow_run.artifacts_url }}
build-and-push-image:
needs: [prepare_checkout]
if: needs.prepare_checkout.outputs.ref != ''
runs-on: ubuntu-latest
permissions:
contents: read
Expand All @@ -45,7 +20,7 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4
with:
ref: ${{ needs.prepare_checkout.outputs.ref }}
ref: ${{ github.ref }}

- name: Set up QEMU
uses: docker/setup-qemu-action@v3
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/releaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,5 @@ concurrency:
jobs:
releaser:
uses: ipdxco/unified-github-workflows/.github/workflows/releaser.yml@v1.0
secrets:
UCI_GITHUB_TOKEN: ${{ secrets.UCI_GITHUB_TOKEN }}