-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bfb4670
commit 1aeb28d
Showing
2 changed files
with
98 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
name: Prerelease | ||
|
||
on: | ||
# Run Every Wednesday at 01:00 AM UTC | ||
schedule: | ||
- cron: '0 2 * * 3' | ||
workflow_dispatch: | ||
inputs: | ||
release-as-minor: | ||
description: "Minor Release (default: Patch)" | ||
type: boolean | ||
default: false | ||
skip-release: | ||
description: "Skip the tag creation step (default: false)" | ||
type: boolean | ||
default: false | ||
|
||
|
||
permissions: write-all | ||
|
||
jobs: | ||
prerelease: | ||
name: Prerelease | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Unshallow | ||
run: git fetch --prune --unshallow | ||
|
||
- name: Setup Go | ||
uses: actions/setup-go@v2 | ||
with: | ||
cache: true | ||
go-version-file: 'go.mod' | ||
cache-dependency-path: go.sum | ||
|
||
- name: Check For Changes | ||
id: changes | ||
run: | | ||
CURRENT_VERSION=$(git describe --tags `git rev-list --tags --max-count=1`) | ||
DIFF_CONTENT=$(git diff $CURRENT_VERSION origin/master) | ||
if [[ $DIFF_CONTENT == "" ]]; then | ||
echo "There were no changes since the last release." | ||
echo "There were no changes since the last release." >> $GITHUB_STEP_SUMMARY | ||
echo "HAS_CHANGES=false" >> $GITHUB_OUTPUT | ||
else | ||
echo "There were changes since the last release." | ||
echo "HAS_CHANGES=true" >> $GITHUB_OUTPUT | ||
echo "CURRENT_VERSION=$CURRENT_VERSION" >> "$GITHUB_ENV" | ||
fi | ||
- name: Prepare Release | ||
if: steps.changes.outputs.HAS_CHANGES == 'true' | ||
env: | ||
IS_MINOR: ${{ contains(inputs.release-as-minor, 'true') }} | ||
run: | | ||
CURRENT_VERSION_PARTS=(${CURRENT_VERSION//./ }) | ||
MAJOR=${CURRENT_VERSION_PARTS[0]} | ||
MINOR=${CURRENT_VERSION_PARTS[1]} | ||
PATCH=${CURRENT_VERSION_PARTS[2]} | ||
if [[ $IS_MINOR == "true" ]] | ||
then | ||
MINOR=$((MINOR+1)) | ||
PATCH=0 | ||
else | ||
PATCH=$((PATCH+1)) | ||
fi | ||
NEW_VERSION="${MAJOR}.${MINOR}.${PATCH}" | ||
echo "NEW_VERSION=$NEW_VERSION" >> "$GITHUB_ENV" | ||
echo "Current Version is: $CURRENT_VERSION" | ||
echo "New Version will be: $NEW_VERSION" | ||
echo "## Updating ${CURRENT_VERSION} to ${NEW_VERSION}" >> $GITHUB_STEP_SUMMARY | ||
echo "## Diff from Prerelease tasks" >> $GITHUB_STEP_SUMMARY | ||
echo "\`\`\`diff" >> $GITHUB_STEP_SUMMARY | ||
git diff @{upstream} @ >> $GITHUB_STEP_SUMMARY | ||
echo "\`\`\`" >> $GITHUB_STEP_SUMMARY | ||
echo "Diff from Prerelease tasks:" | ||
git diff @{upstream} @ | ||
- name: Release New Version | ||
if: success() && github.ref_name == 'main' && steps.changes.outputs.HAS_CHANGES == 'true' && ${{ !inputs.skip-release }} | ||
run: | | ||
git tag -a ${NEW_VERSION} -m "New version ${NEW_VERSION}" | ||
echo "Git configuration:" | ||
git config -l | ||
echo "Pushing new tag to remote, which will trigger the Release workflow" | ||
git push --tags | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,10 @@ jobs: | |
- name: Set up Go | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: 1.21 | ||
cache: true | ||
go-version-file: 'go.mod' | ||
cache-dependency-path: go.sum | ||
|
||
- name: Import GPG key | ||
id: import_gpg | ||
uses: paultyng/[email protected] | ||
|