Build #1889
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 0 * * *' | |
concurrency: | |
group: build | |
cancel-in-progress: false | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
permissions: | |
actions: write | |
packages: write | |
contents: read | |
steps: | |
- | |
name: Run graphql query to get tag | |
uses: octokit/[email protected] | |
id: latest_tag | |
with: | |
variables: | | |
repo: bitcoin | |
owner: bitcoin | |
query: | | |
query tag($owner: String!, $repo: String!) { | |
repository(owner: $owner, name: $repo) { | |
refs(refPrefix: "refs/tags/", last: 1, orderBy: {field: TAG_COMMIT_DATE, direction: ASC}) { | |
edges { | |
node { | |
name | |
} } } } } | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- | |
name: Parse tag from query output | |
run: | | |
#!/bin/bash | |
latest_tag=$(echo '${{ steps.latest_tag.outputs.data }}' | jq '.repository.refs.edges[][].name' -r) | |
#latest_tag="27.1" | |
[ -z "$latest_tag" ] && echo "Tag not found!" && exit 1 | |
[[ "$latest_tag" == "null" ]] && echo "Tag not found!" && exit 1 | |
[[ "$latest_tag" = v* ]] && latest_tag="${latest_tag:1}" | |
echo "Found tag: \"${latest_tag}\"" | |
echo "latest_tag=$latest_tag" >> $GITHUB_ENV | |
- | |
name: Check if the tag exists locally | |
uses: action-pack/tag-exists@v1 | |
id: checkTag | |
with: | |
tag: 'v${{ env.latest_tag }}' | |
- | |
name: Finish when found | |
run: | | |
#!/bin/bash | |
if [[ "${{ steps.checkTag.outputs.exists }}" == "true" ]]; then | |
echo "exists=true" >> $GITHUB_ENV | |
exit 0 | |
fi | |
loc="${{ env.latest_tag }}" | |
loc="${loc//rc/\/test.rc}" | |
url="https://bitcoincore.org/bin/bitcoin-core-${loc}/SHA256SUMS" | |
echo "Checking if ${url/\/SHA256SUMS/} exists.." | |
resp=$(curl -I 2>/dev/null $url | head -1) | |
if echo $resp | grep 404 >/dev/null; then | |
echo "exists=true" >> $GITHUB_ENV | |
else | |
echo "exists=false" >> $GITHUB_ENV | |
fi | |
- | |
name: Extract version information | |
if: env.exists == 'false' | |
id: version | |
run: | | |
#!/bin/bash | |
TARGET_VERSION="${{ env.latest_tag }}" | |
TARGET_VERSION="${TARGET_VERSION%%rc*}" | |
if [[ "${TARGET_VERSION}" != "${{ env.latest_tag }}" ]]; then | |
TARGET_RC="${{ env.latest_tag }}" | |
TARGET_POS=${#TARGET_VERSION} | |
TARGET_RC="${TARGET_RC:TARGET_POS}" | |
fi | |
TARGET_BASE="${TARGET_VERSION}${TARGET_RC}" | |
if [[ -z "$TARGET_RC" ]]; then | |
tags=$(curl -sf "https://api.github.com/repos/bitcoin/bitcoin/tags") | |
latest_release=$(echo "$tags" | jq -r '.[0].name') | |
[[ "$latest_release" == *"rc"* ]] && latest_release=$(echo "$tags" | jq -r '.[1].name') | |
[[ "$latest_release" == *"rc"* ]] && latest_release=$(echo "$tags" | jq -r '.[2].name') | |
[[ "$latest_release" == *"rc"* ]] && latest_release=$(echo "$tags" | jq -r '.[3].name') | |
[[ -z "$latest_release" ]] && echo "JSON error" && exit 1 | |
[[ "$latest_release" == "null" ]] && echo "JSON error" && exit 1 | |
[[ "$latest_release" = v* ]] && latest_release="${latest_release:1}" | |
echo "Latest release: $latest_release" | |
fi | |
echo "target_rc=$TARGET_RC" >> $GITHUB_OUTPUT | |
echo "target_base=$TARGET_BASE" >> $GITHUB_OUTPUT | |
echo "target_version=$TARGET_VERSION" >> $GITHUB_OUTPUT | |
echo "latest_release=$latest_release" >> $GITHUB_OUTPUT | |
- | |
name: Checkout | |
if: env.exists == 'false' | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- | |
name: Lint Dockerfile | |
if: env.exists == 'disabled' | |
uses: hadolint/[email protected] | |
with: | |
dockerfile: Dockerfile | |
ignore: SC2207,DL3008,DL4006 | |
failure-threshold: warning | |
- | |
name: Docker metadata | |
id: meta | |
if: env.exists == 'false' | |
uses: docker/metadata-action@v5 | |
with: | |
context: git | |
images: | | |
${{ secrets.DOCKERHUB_REPO }} | |
ghcr.io/${{ github.repository }} | |
tags: | | |
type=raw,value=latest,priority=100,enable=${{ steps.version.outputs.target_base == steps.version.outputs.latest_release }} | |
type=raw,value=${{ steps.version.outputs.target_base }} | |
labels: | | |
org.opencontainers.image.title=${{ vars.NAME }} | |
env: | |
DOCKER_METADATA_ANNOTATIONS_LEVELS: manifest,index | |
- | |
name: Set up Docker Buildx | |
if: env.exists == 'false' | |
uses: docker/setup-buildx-action@v3 | |
- | |
name: Login into Docker Hub | |
if: env.exists == 'false' | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- | |
name: Login to GitHub Container Registry | |
if: env.exists == 'false' | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- | |
name: Build Docker image | |
if: env.exists == 'false' | |
uses: docker/build-push-action@v6 | |
with: | |
context: . | |
push: true | |
provenance: false | |
platforms: linux/amd64,linux/arm/v7,linux/arm64 | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
annotations: ${{ steps.meta.outputs.annotations }} | |
build-args: | | |
BITCOIN_RC=${{ steps.version.outputs.target_rc }} | |
BITCOIN_VERSION=${{ steps.version.outputs.target_version }} | |
VERSION_ARG=${{ steps.meta.outputs.version }} | |
- | |
name: Create a release | |
if: env.exists == 'false' | |
uses: action-pack/github-release@v2 | |
with: | |
tag: "v${{ steps.meta.outputs.version }}" | |
title: "v${{ steps.meta.outputs.version }}" | |
token: ${{ secrets.REPO_ACCESS_TOKEN }} | |
- | |
name: Send mail | |
if: env.exists == 'false' | |
uses: action-pack/send-mail@v1 | |
with: | |
to: ${{secrets.MAILTO}} | |
from: Github Actions <${{secrets.MAILTO}}> | |
connection_url: ${{secrets.MAIL_CONNECTION}} | |
subject: Build of ${{ github.event.repository.name }} v${{ steps.meta.outputs.version }} completed | |
body: | | |
The build job of ${{ github.event.repository.name }} v${{ steps.meta.outputs.version }} was completed successfully! | |
See https://github.com/${{ github.repository }}/actions for more information. |