Skip to content

Commit

Permalink
refactor(ci): automate docker releases on tag pushes (#71)
Browse files Browse the repository at this point in the history
  • Loading branch information
galargh authored Jun 21, 2024
1 parent 7ea6ede commit a2a81ab
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 26 deletions.
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/[email protected]
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/[email protected]
secrets:
UCI_GITHUB_TOKEN: ${{ secrets.UCI_GITHUB_TOKEN }}

0 comments on commit a2a81ab

Please sign in to comment.