-
Notifications
You must be signed in to change notification settings - Fork 22
chore(go): add Go release workflow #792
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
Merged
+116
−1
Merged
Changes from 27 commits
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
a33ef8d
auto commit
rishav-karanjit a3303aa
auto commit
rishav-karanjit 34191df
auto commit
rishav-karanjit 8b1b50d
auto commit
rishav-karanjit ba0278e
auto commit
rishav-karanjit 121bb63
auto commit
rishav-karanjit a5de953
auto commit
rishav-karanjit 17f4391
Merge branch 'mainline' into rishav/releaseScript
rishav-karanjit dc8148c
auto commit
rishav-karanjit 2aa6b79
Merge branch 'rishav/releaseScript' of https://github.com/aws/aws-enc…
rishav-karanjit c286938
auto commit
rishav-karanjit 3d8b53a
Merge branch 'mainline' into rishav/releaseScript
rishav-karanjit bda38cc
auto commit
rishav-karanjit 5ce2fd5
Update scripts/go-release-automation.sh
rishav-karanjit a3283aa
auto commit
rishav-karanjit 5f61571
auto commit
rishav-karanjit 7acd6e8
bump mpl
rishav-karanjit cbc1fd8
Merge branch 'mainline' into rishav/releaseScript
rishav-karanjit 2cd5321
auto commit
rishav-karanjit dd2aba1
Merge branch 'rishav/releaseScript' of https://github.com/aws/aws-enc…
rishav-karanjit 027cecd
Update go-release.yml
rishav-karanjit 5d2ab3b
Update project.properties
rishav-karanjit 2141441
auto commit
rishav-karanjit 1732e95
formatting
rishav-karanjit ca235ca
bump mpl
rishav-karanjit d2f6c56
auto commit
rishav-karanjit 1ef771c
Merge branch 'mainline' into rishav/releaseScript
rishav-karanjit e390acf
auto commit
rishav-karanjit 75441c7
Merge branch 'rishav/releaseScript' of https://github.com/aws/aws-enc…
rishav-karanjit c4494d3
auto commit
rishav-karanjit bf92fdb
auto commit
rishav-karanjit bf8c3fb
Merge branch 'mainline' into rishav/releaseScript
rishav-karanjit e276da2
auto commit
rishav-karanjit File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,86 @@ | ||
name: Go Release Automation | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
project-name: | ||
description: "Project name (e.g., AwsEncryptionSDK)" | ||
required: true | ||
type: string | ||
version: | ||
description: "Version (e.g., v0.1.0)" | ||
required: true | ||
type: string | ||
|
||
jobs: | ||
get-dafny-version: | ||
uses: ./.github/workflows/dafny_version.yaml | ||
|
||
go-release: | ||
needs: get-dafny-version | ||
runs-on: macos-13 | ||
permissions: | ||
contents: write | ||
pull-requests: write | ||
id-token: write | ||
|
||
steps: | ||
- name: Support longpaths on Git checkout | ||
run: | | ||
git config --global core.longpaths true | ||
|
||
- name: Configure AWS Credentials for Tests | ||
uses: aws-actions/configure-aws-credentials@v4 | ||
with: | ||
aws-region: us-west-2 | ||
role-to-assume: arn:aws:iam::370957321024:role/GitHub-CI-Public-ESDK-Dafny-Role-us-west-2 | ||
role-session-name: GoReleaseTest | ||
|
||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Update submodules | ||
run: | | ||
git submodule update --init --recursive | ||
|
||
- name: Setup Dafny | ||
uses: ./mpl/.github/actions/setup_dafny | ||
with: | ||
dafny-version: ${{ needs.get-dafny-version.outputs.version }} | ||
|
||
- name: Install Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: "1.23" | ||
|
||
- name: Install Go imports | ||
run: | | ||
go install golang.org/x/tools/cmd/goimports@latest | ||
|
||
- name: Install Smithy-Dafny codegen dependencies | ||
uses: ./.github/actions/install_smithy_dafny_codegen_dependencies | ||
|
||
- name: Configure Git | ||
run: | | ||
git config --global user.name "GitHub Actions" | ||
git config --global user.email "[email protected]" | ||
|
||
- name: Get release directory name | ||
id: release-dir | ||
run: | | ||
chmod +x mpl/scripts/go-release-automation.sh | ||
RELEASE_DIR_NAME=$(mpl/scripts/go-release-automation.sh get_release_dir_name "${{ github.event.inputs.project-name }}" "${{ github.event.inputs.version }}") | ||
echo "releaseDirName=$RELEASE_DIR_NAME" >> $GITHUB_OUTPUT | ||
|
||
- name: Generate a changelog | ||
uses: orhun/git-cliff-action@v4 | ||
with: | ||
config: releases/go/.git-cliff.toml | ||
args: --bump -u --prepend releases/go/${{ steps.release-dir.outputs.releaseDirName }}/CHANGELOG.md | ||
|
||
- name: Run Go release automation script | ||
run: | | ||
mpl/scripts/go-release-automation.sh run_release_script ${{ github.event.inputs.project-name }} ${{ github.event.inputs.version }} |
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.