Skip to content

Commit

Permalink
temp: test release process
Browse files Browse the repository at this point in the history
  • Loading branch information
jaeaster committed Jun 6, 2024
1 parent 1607c7e commit 0a8c67e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:
- main
- holesky
- mainnet
- feat/release-process
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: false
Expand Down Expand Up @@ -103,7 +104,7 @@ jobs:
public-push:
name: Push Docker Images to Docker hub
environment: CI
if: contains('main holesky mainnet', github.ref_name)
if: contains('main holesky mainnet feat/release-process', github.ref_name)
runs-on: nix-128g
needs: build
steps:
Expand All @@ -115,7 +116,7 @@ jobs:

- name: Push to public repo
run: |
if [[ ${{ github.ref_name }} == 'main' ]]; then
if [[ ${{ github.ref_name }} == 'main' || ${{ github.ref_name }} == 'feat/release-process' ]]; then
tag=latest
else
tag=${{ github.ref_name }}
Expand Down

0 comments on commit 0a8c67e

Please sign in to comment.