Skip to content

Commit

Permalink
chore: allow publishing previous canary images (#3280)
Browse files Browse the repository at this point in the history
Co-authored-by: tomiir <[email protected]>
  • Loading branch information
chris13524 and tomiir authored Nov 21, 2024
1 parent 2c82245 commit 46f3d46
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/publish_canary.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: Publish Canary Image
on:
workflow_dispatch:
inputs:
ref:
description: 'The ref to build the canary for'
default: 'main'
required: false
type: string
push:
branches:
- main
Expand Down Expand Up @@ -30,6 +36,8 @@ jobs:

- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ inputs.ref || github.base_ref }}

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
Expand Down

0 comments on commit 46f3d46

Please sign in to comment.