Skip to content

Commit

Permalink
Update Shipyard to use stable branch 'release-0.10'
Browse files Browse the repository at this point in the history
Signed-off-by: Automated Release <[email protected]>
  • Loading branch information
Automated Release committed Aug 9, 2021
1 parent 70d0260 commit d218587
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ on:

jobs:
target_devel:
name: PR targets devel
name: PR targets release-0.10
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.10
if: ${{ github.base_ref != 'release-0.10' }}
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 @@ -51,7 +51,7 @@ jobs:
uses: actions/checkout@v2
with:
# This is replaced to stable branch by auto release process
ref: devel
ref: release-0.10
repository: submariner-io/${{ matrix.project }}
path: ${{ matrix.project }}

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

Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:
uses: actions/checkout@v2
with:
# This is replaced to stable branch by auto release process
ref: devel
ref: release-0.10
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.10
- 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.10
IMAGES ?= shipyard-dapper-base shipyard-linting nettest
NON_DAPPER_GOALS += images
SHELLCHECK_ARGS := scripts/shared/lib/*
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.10
DEV_VERSION := dev
override CALCULATED_VERSION := $(BASE_BRANCH)-$(shell git rev-parse --short HEAD)
VERSION ?= $(CALCULATED_VERSION)
Expand Down

0 comments on commit d218587

Please sign in to comment.