Skip to content

Commit

Permalink
Update Shipyard to use stable branch 'release-0.12'
Browse files Browse the repository at this point in the history
Signed-off-by: Automated Release <[email protected]>
  • Loading branch information
Automated Release committed Mar 2, 2022
1 parent 913e6c2 commit b47a1fb
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ jobs:
name: PR targets branch
runs-on: ubuntu-latest
steps:
- name: Check that the PR targets devel
if: ${{ github.base_ref != 'devel' }}
- name: Check that the PR targets release-0.12
if: ${{ github.base_ref != 'release-0.12' }}
run: exit 1
6 changes: 3 additions & 3 deletions .github/workflows/consuming.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f
with:
# This is replaced to stable branch by auto release process
ref: devel
ref: release-0.12
repository: submariner-io/${{ matrix.project }}
path: ${{ matrix.project }}

Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f
with:
# This is replaced to stable branch by auto release process
ref: devel
ref: release-0.12
repository: submariner-io/${{ matrix.project }}
path: ${{ matrix.project }}

Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f
with:
# This is replaced to stable branch by auto release process
ref: devel
ref: release-0.12
repository: submariner-io/${{ matrix.project }}
path: ${{ matrix.project }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: Release Images
on:
push:
branches:
- devel
- release-0.12
- release-*

jobs:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
BASE_BRANCH ?= devel
BASE_BRANCH ?= release-0.12
OCM_BASE_BRANCH ?= main
IMAGES ?= shipyard-dapper-base shipyard-linting nettest
MULTIARCH_IMAGES ?= nettest
Expand Down
2 changes: 1 addition & 1 deletion Makefile.versions
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Calculate versions; these can be overridden
CUTTING_EDGE := devel
CUTTING_EDGE := release-0.12
DEV_VERSION := dev
override CALCULATED_VERSION := $(BASE_BRANCH)-$(shell git rev-parse --short HEAD)
VERSION ?= $(CALCULATED_VERSION)
Expand Down

0 comments on commit b47a1fb

Please sign in to comment.