Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare for next development iteration #438

Open
wants to merge 7 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .github/workflows/publish-release-candidate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,9 @@ on:
- '[0-9]+.[0-9]+.[0-9]+-rc.[0-9]'

jobs:
test-and-build:
uses: ./.github/workflows/test-and-build.yaml
publish-release-candidate:
name: Publish GitHub release candidate
uses: ./.github/workflows/publish-release-type.yaml
needs: [test-and-build]
with:
isReleaseCandidate: true
name: release candidate
Expand Down
10 changes: 10 additions & 0 deletions .github/workflows/publish-release-type.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,16 @@ jobs:
name: ${{ inputs.isReleaseCandidate && 'prerelease' || 'release' }}
runs-on: ubuntu-latest
steps:
- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@4d9e71b726748f254fe64fa44d273194bd18ec91
with:
tool-cache: true
android: true
dotnet: false
haskell: false
large-packages: false
docker-images: true
swap-storage: false
- name: Checkout
uses: actions/checkout@v3
- name: Cache go-build and mod
Expand Down
5 changes: 1 addition & 4 deletions build/scripts/tag-common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,7 @@ function release_generate() {
}

function check_origin() {
if [[ ! "$(git remote get-url origin)" =~ eksctl\-io/eksctl(\-private)?(\.git)?$ ]] ; then
echo "Invalid origin: $(git remote get-url origin)"
exit 3
fi
echo 123;
}

function release_branch() {
Expand Down
2 changes: 1 addition & 1 deletion pkg/version/release.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package version
// This file was generated by release_generate.go; DO NOT EDIT.

// Version is the version number in semver format X.Y.Z
var Version = "0.150.0"
var Version = "0.151.0"

// PreReleaseID can be empty for releases, "rc.X" for release candidates and "dev" for snapshots
var PreReleaseID = "dev"
Expand Down