File tree Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments