Build #261
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 * * * *' | |
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) | |
[ -z "$latest_tag" ] && 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 | |
else | |
loc="${{ env.latest_tag }}" | |
loc="${loc//rc/\/test.rc}" | |
url="https://bitcoincore.org/bin/bitcoin-core-${loc}/" | |
echo "Checking if $url 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 | |
fi | |
- | |
name: Extract version information | |
if: env.exists == 'false' | |
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}" | |
latest_release=$(curl --silent "https://api.github.com/repos/bitcoin/bitcoin/releases/latest" | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/') | |
[[ "$latest_release" = v* ]] && latest_release="${latest_release:1}" | |
echo "Official release is: $latest_release, target release is: $TARGET_BASE" | |
echo "latest_release=${latest_release}" >> $GITHUB_OUTPUT | |
echo "TARGET_RC=${TARGET_RC}" >> $GITHUB_OUTPUT | |
echo "TARGET_BASE=${TARGET_BASE}" >> $GITHUB_OUTPUT | |
echo "TARGET_VERSION=${TARGET_VERSION}" >> $GITHUB_OUTPUT | |
- | |
name: Checkout | |
if: env.exists == 'false' | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- | |
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=${{ env.TARGET_BASE == env.latest_release }} | |
type=raw,value=${{ env.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@v5 | |
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: | | |
VCS_REF=${GITHUB_SHA::8} | |
BITCOIN_RC=${{ env.TARGET_RC }} | |
BITCOIN_VERSION=${{ env.TARGET_VERSION }} | |
VERSION_ARG=${{ steps.meta.outputs.version }} | |
- | |
name: Create a release | |
if: env.exists == 'false' | |
uses: action-pack/github-release@v2 | |
env: | |
GITHUB_TOKEN: ${{ secrets.REPO_ACCESS_TOKEN }} | |
with: | |
tag: "v${{ steps.meta.outputs.version }}" | |
title: "v${{ steps.meta.outputs.version }}" | |
- | |
name: Send mail | |
if: env.exists == 'false' | |
uses: dawidd6/action-send-mail@v3 | |
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. |