Skip to content

Commit

Permalink
Switch publishing the next images from a dedicated branch to fix th…
Browse files Browse the repository at this point in the history
…e `next`image (#108)

* Switch publishing the `next` images from a dedicated branch to fix the `next`image

* Update image-publish.yml
  • Loading branch information
azatsarynnyy authored Sep 16, 2022
1 parent ce44b0a commit b176801
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/image-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@
name: image-publish

on:
workflow_dispatch:
push:
branches:
- main
- fix-insiders
tags:
- '7.*.*'

Expand All @@ -29,6 +30,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
with:
ref: fix-insiders
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
Expand All @@ -51,6 +54,8 @@ jobs:
echo "BRANCH_NAME=${BRANCH_NAME##*/}" >> $GITHUB_ENV
- name: Checkout
uses: actions/checkout@v2
with:
ref: fix-insiders
- name: Download linux-libc-amd64 image
uses: ishworkh/docker-image-artifact-download@v1
with:
Expand Down Expand Up @@ -105,10 +110,12 @@ jobs:
dev:
name: dev
runs-on: ubuntu-20.04
if: github.ref == 'refs/heads/main'
if: github.ref == 'refs/heads/fix-insiders'
steps:
- name: Checkout
uses: actions/checkout@v2
with:
ref: fix-insiders
- name: Login to Quay.io
uses: docker/login-action@v1
with:
Expand Down

0 comments on commit b176801

Please sign in to comment.