Skip to content

Commit d6e0198

Browse files
committed
fix: run pr checks
1 parent d891113 commit d6e0198

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

.github/workflows/pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
pr:
2929
runs-on: ubuntu-latest
3030
container:
31-
image: golang:1.21-bullseye
31+
image: golang:1.24-bookworm
3232
needs: set-version
3333
env:
3434
REVISION: $GITHUB_SHA

.github/workflows/release.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,4 +59,12 @@ jobs:
5959
- name: release binary
6060
run: |
6161
make REVISION=$GITHUB_SHA GIT_TAG=${SEMVER} PAT=${{ secrets.GITHUB_TOKEN }} cross-build
62-
make REVISION=$GITHUB_SHA GIT_TAG=${SEMVER} PAT=${{ secrets.GITHUB_TOKEN }} release
62+
- name: Release
63+
uses: softprops/action-gh-release@v2
64+
with:
65+
tag_name: ${{ needs.set-version.outputs.semVer }}
66+
# TODO: add additional info to the release
67+
generate_release_notes: true
68+
token: ${{ secrets.GITHUB_TOKEN }}
69+
files: ./dist/*
70+
prerelease: true

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
OWNER := dnitsch
1+
OWNER := DevLabFoundry
22
NAME := aws-cli-auth
33
GIT_TAG := 0.11.11
44
VERSION := v$(GIT_TAG)

0 commit comments

Comments
 (0)