Skip to content

Commit 092a400

Browse files
authoredSep 11, 2024
Merge pull request #1570 from dwertent/latest-tag
fix: get latest tag
2 parents 4f64fd9 + 9e449ef commit 092a400

File tree

3 files changed

+35
-46
lines changed

3 files changed

+35
-46
lines changed
 

‎.github/workflows/docker_release.yml

+12-23
Original file line numberDiff line numberDiff line change
@@ -5,36 +5,25 @@ on:
55
types: [released, prereleased]
66

77
jobs:
8-
fetch-latest-tag:
9-
runs-on: ubuntu-latest
10-
outputs:
11-
latest_tag: ${{ steps.get_latest_tag.outputs.latest_tag }}
12-
steps:
13-
- name: Checkout code
14-
uses: actions/checkout@v3
15-
with:
16-
fetch-depth: 0
17-
18-
- name: Fetch all tags
19-
run: git fetch --tags
20-
21-
- name: Get the latest tag
22-
id: get_latest_tag
23-
run: |
24-
latest_tag=$(git tag -l | sort -V | tail -n 1)
25-
echo "::set-output name=latest_tag::${latest_tag}"
26-
8+
279
docker:
2810
runs-on: ubuntu-latest
29-
needs: fetch-latest-tag
3011
permissions:
3112
contents: read
3213
packages: write
3314
steps:
34-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v4
3516
with:
3617
fetch-depth: 0
3718

19+
- name: Get the latest tag
20+
id: get_latest_tag
21+
run: |
22+
git fetch --tags
23+
latest_tag=$(git tag -l | sort -V | tail -n 1)
24+
echo "latest tag: $latest_tag"
25+
echo "LATEST_TAG=$latest_tag" >> $GITHUB_ENV
26+
3827
- name: Set up QEMU
3928
uses: docker/setup-qemu-action@v2
4029

@@ -48,9 +37,9 @@ jobs:
4837
registry: ghcr.io
4938
username: ${{ github.actor }}
5039
password: ${{ secrets.GITHUB_TOKEN }}
51-
40+
5241
- name: Set latest tag
53-
if: github.event.action == 'released' && github.ref_name == needs.fetch-latest-tag.outputs.latest_tag
42+
if: github.event.action == 'released' && github.ref_name == env.LATEST_TAG
5443
run: |
5544
echo "DOCKER_TAGS=${{ env.DOCKER_TAGS }},ghcr.io/${{ github.repository }}:latest" >> $GITHUB_ENV
5645

‎.github/workflows/docs.yml

+7-15
Original file line numberDiff line numberDiff line change
@@ -23,32 +23,24 @@ jobs:
2323
git config --global user.name "GitHub Actions"
2424
git config --global user.email "noreply@github.com"
2525
26-
- name: Check if this is the latest release
26+
- name: Get the latest tag
2727
run: |
28-
LATEST_TAG=$(
29-
curl -L \
30-
-H "Accept: application/vnd.github+json" \
31-
-H "Authorization: Bearer ${{ github.token }}" \
32-
-H "X-GitHub-Api-Version: 2022-11-28" \
33-
https://api.github.com/repos/${{ github.repository }}/releases/latest \
34-
| jq -r '.tag_name'
35-
)
36-
IS_LATEST=${{ $LATEST_TAG == github.event.release.tag_name }}
37-
echo This release is: "${{ github.event.release.tag_name }}"
38-
echo The latest release is: "$LATEST_TAG"
39-
echo "IS_LATEST_RELEASE=$IS_LATEST" >> "$GITHUB_ENV"
28+
git fetch --tags
29+
latest_tag=$(git tag -l | sort -V | tail -n 1)
30+
echo "latest tag: $latest_tag"
31+
echo "LATEST_TAG=$latest_tag" >> $GITHUB_ENV
4032
4133
- name: Install docs dependencies
4234
working-directory: doc-site
4335
run: pip install -r requirements.txt
4436

4537
- name: Update doc site for release
46-
if: ${{ github.event_name == 'release' && env.IS_LATEST_RELEASE != 'true' }}
38+
if: github.event.action == 'released' && github.ref_name != env.LATEST_TAG
4739
working-directory: doc-site
4840
run: mike deploy ${{ github.event.release.tag_name }} --push
4941

5042
- name: Update doc site for latest release
51-
if: ${{ github.event_name == 'release' && env.IS_LATEST_RELEASE == 'true' }}
43+
if: github.event.action == 'released' && github.ref_name == env.LATEST_TAG
5244
working-directory: doc-site
5345
run: mike deploy ${{ github.event.release.tag_name }} latest -u --push
5446

‎Dockerfile

+16-8
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,23 @@
1+
# ARG Definitions
2+
# Consider adding default values for the ARGs based on this warning:
3+
# https://github.com/hyperledger/firefly/actions/runs/10795366695/job/29941873807#step:4:171
14
ARG FIREFLY_BUILDER_TAG
25
ARG FABRIC_BUILDER_TAG
36
ARG FABRIC_BUILDER_PLATFORM
47
ARG SOLIDITY_BUILDER_TAG
58
ARG BASE_TAG
9+
610
ARG BUILD_VERSION
711
ARG GIT_REF
812

13+
# Firefly Builder
914
FROM $FIREFLY_BUILDER_TAG AS firefly-builder
1015
ARG BUILD_VERSION
1116
ARG GIT_REF
1217
RUN apk add make=4.4.1-r2 \
1318
gcc=13.2.1_git20231014-r0 \
1419
build-base=0.5-r3 \
15-
curl=8.9.0-r0 \
20+
curl=8.9.1-r0 \
1621
git=2.43.4-r0
1722
WORKDIR /firefly
1823
RUN chgrp -R 0 /firefly \
@@ -26,6 +31,7 @@ RUN go mod download
2631
ADD --chown=1001:0 . .
2732
RUN make build
2833

34+
# Fabric Builder
2935
FROM --platform=$FABRIC_BUILDER_PLATFORM $FABRIC_BUILDER_TAG AS fabric-builder
3036
WORKDIR /firefly/smart_contracts/fabric/firefly-go
3137
RUN chgrp -R 0 /firefly \
@@ -39,13 +45,13 @@ RUN GO111MODULE=on go mod vendor
3945
WORKDIR /tmp/fabric
4046
RUN curl https://github.com/hyperledger/fabric/releases/download/v2.3.2/hyperledger-fabric-linux-amd64-2.3.2.tar.gz -L --output hyperledger-fabric-linux-amd64-2.3.2.tar.gz
4147
RUN tar -zxf hyperledger-fabric-linux-amd64-2.3.2.tar.gz
42-
ENV FABRIC_CFG_PATH /tmp/fabric/config/
48+
ENV FABRIC_CFG_PATH=/tmp/fabric/config/
4349
RUN ./bin/peer lifecycle chaincode package /firefly/smart_contracts/fabric/firefly-go/firefly_fabric.tar.gz --path /firefly/smart_contracts/fabric/firefly-go --lang golang --label firefly_1.0
4450

51+
# Solidity Builder
4552
FROM $SOLIDITY_BUILDER_TAG AS solidity-builder
4653
WORKDIR /firefly/solidity_firefly
47-
RUN chgrp -R 0 /firefly \
48-
&& chmod -R g+rwX /firefly
54+
RUN chgrp -R 0 /firefly && chmod -R g+rwX /firefly
4955
ADD --chown=1001:0 smart_contracts/ethereum/solidity_firefly/ .
5056
USER 1001
5157
RUN mkdir -p build/contracts \
@@ -54,21 +60,23 @@ RUN mkdir -p build/contracts \
5460
&& cd ../build/contracts \
5561
&& mv combined.json Firefly.json
5662

57-
FROM alpine:3.19 AS SBOM
63+
# SBOM
64+
FROM alpine:3.19 AS sbom
5865
WORKDIR /
5966
ADD . /SBOM
6067
RUN apk add --no-cache curl
6168
RUN curl -sfL https://raw.githubusercontent.com/aquasecurity/trivy/main/contrib/install.sh | sh -s -- -b /usr/local/bin v0.48.3
6269
RUN trivy fs --format spdx-json --output /sbom.spdx.json /SBOM
6370
RUN trivy sbom /sbom.spdx.json --severity UNKNOWN,HIGH,CRITICAL --exit-code 1
6471

72+
# Final executable build
6573
FROM $BASE_TAG
6674
ARG UI_TAG
6775
ARG UI_RELEASE
6876
RUN apk add --update --no-cache \
6977
sqlite=3.44.2-r0 \
7078
postgresql16-client=16.3-r0 \
71-
curl=8.9.0-r0 \
79+
curl=8.9.1-r0 \
7280
jq=1.7.1-r0
7381
WORKDIR /firefly
7482
RUN chgrp -R 0 /firefly \
@@ -83,10 +91,10 @@ COPY --from=firefly-builder --chown=1001:0 /firefly/firefly ./firefly
8391
COPY --from=firefly-builder --chown=1001:0 /firefly/db ./db
8492
COPY --from=solidity-builder --chown=1001:0 /firefly/solidity_firefly/build/contracts ./contracts
8593
COPY --from=fabric-builder --chown=1001:0 /firefly/smart_contracts/fabric/firefly-go/firefly_fabric.tar.gz ./contracts/firefly_fabric.tar.gz
86-
ENV UI_RELEASE https://github.com/hyperledger/firefly-ui/releases/download/$UI_TAG/$UI_RELEASE.tgz
94+
ENV UI_RELEASE=https://github.com/hyperledger/firefly-ui/releases/download/$UI_TAG/$UI_RELEASE.tgz
8795
RUN mkdir /firefly/frontend \
8896
&& curl -sLo - $UI_RELEASE | tar -C /firefly/frontend -zxvf -
89-
COPY --from=SBOM /sbom.spdx.json /sbom.spdx.json
97+
COPY --from=sbom /sbom.spdx.json /sbom.spdx.json
9098
RUN ln -s /firefly/firefly /usr/bin/firefly
9199
USER 1001
92100
ENTRYPOINT [ "firefly" ]

0 commit comments

Comments
 (0)