Skip to content

Commit

Permalink
Merge pull request #396 from cbgbt/release-0.5.0-rc3
Browse files Browse the repository at this point in the history
Add golang to additional CI workflows where it was missing, always use bottlerocket capacity for release workflows
  • Loading branch information
cbgbt authored Oct 10, 2024
2 parents 8b261fd + 3d20137 commit a54ac6d
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
10 changes: 9 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,9 @@ jobs:
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: actions/setup-go@v5
with:
go-version: "^1.18"
- name: Install cargo-dist
run: ${{ matrix.install-dist }}
- name: Install Cross
Expand Down Expand Up @@ -187,14 +190,19 @@ jobs:
&& (needs.upload-artifacts.result == 'skipped'
|| needs.upload-artifacts.result == 'success')
}}
runs-on: ubuntu-latest
runs-on:
group: bottlerocket
labels: bottlerocket_ubuntu-latest_8-core
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_REF_NAME: ${{ github.ref_name }}
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: actions/setup-go@v5
with:
go-version: "^1.18"
- name: mark release as non-draft
run: |
gh release edit "${GITHUB_REF_NAME}" --draft=false
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ pubsys-setup = { version = "0.1", path = "tools/pubsys-setup", artifact = [ "bin
testsys = { version = "0.1", path = "tools/testsys", artifact = [ "bin:testsys" ] }
testsys-config = { version = "0.1", path = "tools/testsys-config" }
testsys-model = { version = "0.0.14", git = "https://github.com/bottlerocket-os/bottlerocket-test-system", tag = "v0.0.14" }
twoliter = { version = "0.5.0-rc2", path = "twoliter", artifact = [ "bin:twoliter" ] }
twoliter = { version = "0.5.0-rc3", path = "twoliter", artifact = [ "bin:twoliter" ] }
unplug = { version = "0.1", path = "tools/unplug", artifact = [ "bin:unplug" ] }
update-metadata = { version = "0.1", path = "tools/update-metadata" }

Expand Down
2 changes: 1 addition & 1 deletion twoliter/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "twoliter"
version = "0.5.0-rc2"
version = "0.5.0-rc3"
edition = "2021"
description = "A command line tool for creating custom builds of Bottlerocket"
authors = ["Matthew James Briggs <[email protected]>"]
Expand Down

0 comments on commit a54ac6d

Please sign in to comment.