Skip to content

Commit 1882024

Browse files
committed
ci: switch to prebuilt since binary.
1 parent 33a4f3c commit 1882024

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

.github/workflows/ci.yaml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,24 @@ jobs:
1111
contents: write
1212
env:
1313
AWS_REGION: "eu-west-1"
14-
TESTCONTAINERS_RYUK_DISABLED: "true"
1514
CONTAINER_BUILDER: "buildx"
15+
SINCE_VERSION: "0.14.2"
16+
TESTCONTAINERS_RYUK_DISABLED: "true"
1617
steps:
1718
- uses: actions/checkout@v4
1819

20+
- name: Install since
21+
if: ${{ (startsWith(github.ref, 'refs/tags/') || github.ref == 'refs/heads/develop') && matrix.java == '11' }}
22+
run: |
23+
cd "$( mktemp -d )"
24+
curl --fail -L -o since.tar.gz https://github.com/release-tools/since/releases/download/v${SINCE_VERSION}/since_${SINCE_VERSION}_linux_amd64.tar.gz
25+
tar xvf since.tar.gz
26+
cp since /usr/local/bin
27+
1928
- name: Write changelog
2029
if: ${{ (startsWith(github.ref, 'refs/tags/') || github.ref == 'refs/heads/develop') && matrix.java == '11' }}
21-
env:
22-
GOBIN: /usr/local/bin/
2330
run: |
2431
mkdir -p build
25-
go install github.com/outofcoffee/[email protected]
2632
since changelog extract -q > build/CHANGES.md
2733
cat build/CHANGES.md
2834

0 commit comments

Comments
 (0)