Release #140
Workflow file for this run
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: Release | |
on: | |
release: | |
types: [released] | |
workflow_dispatch: | |
inputs: | |
version: | |
description: Version | |
required: true | |
env: | |
REGISTRY_IMAGE: getlago/api | |
jobs: | |
build-arm-image: | |
name: Build ARM Image | |
runs-on: lago-runer-arm64 | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Docker Meta | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
images: ${{ env.REGISTRY_IMAGE }} | |
tags: | | |
type=semver,pattern={{raw}},value=${{ github.event_name == 'release' && github.event.release.tag_name || github.event.inputs.version }} | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
with: | |
version: latest | |
platforms: linux/arm64 | |
- name: Log In to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_PASSWORD }} | |
- name: Add version into docker image | |
id: add_version | |
run: | | |
echo "${{ github.event_name == 'release' && github.event.release.tag_name || github.event.inputs.version }}" > LAGO_VERSION | |
- name: Build and push Docker image | |
uses: docker/build-push-action@v6 | |
id: build | |
with: | |
context: . | |
platforms: linux/arm64 | |
labels: ${{ steps.meta.outputs.labels }} | |
outputs: type=image,name=${{ env.REGISTRY_IMAGE }},push-by-digest=true,name-canonical=true,push=true | |
build-args: | | |
SEGMENT_WRITE_KEY=${{ secrets.SEGMENT_WRITE_KEY }} | |
GOCARDLESS_CLIENT_ID=${{ secrets.PRODUCTION_GOCARDLESS_CLIENT_ID }} | |
GOCARDLESS_CLIENT_SECRET=${{ secrets.PRODUCTION_GOCARDLESS_CLIENT_SECRET }} | |
LAGO_OAUTH_URL=https://proxy.getlago.com | |
- name: Export Digest | |
run: | | |
mkdir -p /tmp/digests | |
digest="${{ steps.build.outputs.digest }}" | |
touch "/tmp/digests/${digest#sha256:}" | |
- name: Upload Digest | |
uses: actions/upload-artifact@v4 | |
with: | |
name: digests-arm64 | |
path: /tmp/digests/* | |
if-no-files-found: error | |
retention-days: 1 | |
# build-amd-image: | |
# name: Build AMD Image | |
# runs-on: lago-runner | |
# steps: | |
# - name: Checkout Repository | |
# uses: actions/checkout@v4 | |
# - name: Set up Docker Buildx | |
# uses: docker/setup-buildx-action@v3 | |
# - name: Log In to Docker Hub | |
# uses: docker/login-action@v3 | |
# with: | |
# username: ${{ secrets.DOCKERHUB_USERNAME }} | |
# password: ${{ secrets.DOCKERHUB_PASSWORD }} | |
# - name: Add version into docker image | |
# id: add_version | |
# run: | | |
# echo "${{ github.event_name == 'release' && github.event.release.tag_name || github.event.inputs.version }}" > LAGO_VERSION | |
# echo "lago_version=${{ github.event_name == 'release' && github.event.release.tag_name || github.event.inputs.version }}" >> "$GITHUB_OUTPUT" | |
# - name: Build and push Docker image | |
# uses: docker/build-push-action@v6 | |
# with: | |
# context: . | |
# platforms: linux/amd64 | |
# push: true | |
# tags: getlago/api:${{ steps.add_version.outputs.lago_version }}-amd64 | |
# build-args: | | |
# SEGMENT_WRITE_KEY=${{ secrets.SEGMENT_WRITE_KEY }} | |
# GOCARDLESS_CLIENT_ID=${{ secrets.PRODUCTION_GOCARDLESS_CLIENT_ID }} | |
# GOCARDLESS_CLIENT_SECRET=${{ secrets.PRODUCTION_GOCARDLESS_CLIENT_SECRET }} | |
# LAGO_OAUTH_URL=https://proxy.getlago.com | |
# merge: | |
# runs-on: lago-runner | |
# needs: [build-arm-image, build-amd-image] | |
# steps: | |
# - name: Download Digests | |
# uses: actions/download-artifact@v2 | |
# with: | |
# path: /tmp/digests | |
# pattern: digests-* | |
# merge-multiple: true | |
# - name: Set up Docker buildx | |
# uses: docker/setup-buildx-action@v3 | |
# - name: Log in to Docker Hub | |
# uses: docker/login-action@v3 | |
# with: | |
# username: ${{ secrets.DOCKERHUB_USERNAME }} | |
# password: ${{ secrets.DOCKERHUB_PASSWORD }} | |
# - name: Create manifest and push | |
# working-directory: /tmp/digests | |
# run: | | |
# docker buildx imagetools create $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \ | |
# $(printf | |
# create-manifest: | |
# runs-on: lago-runner | |
# needs: [build-arm-image, build-amd-image] | |
# steps: | |
# - uses: actions/checkout@v4 | |
# - name: Setup QEMU | |
# uses: docker/setup-qemu-action@v3 | |
# - name: Login to Docker Hub | |
# uses: docker/login-action@v3 | |
# with: | |
# username: ${{ secrets.DOCKERHUB_USERNAME }} | |
# password: ${{ secrets.DOCKERHUB_PASSWORD }} | |
# - name: Add version into docker image | |
# id: add_version | |
# run: | | |
# echo "lago_version=${{ github.event_name == 'release' && github.event.release.tag_name || github.event.inputs.version }}" >> "$GITHUB_OUTPUT" | |
# - name: Create version manifest and Push | |
# run: | | |
# docker manifest create \ | |
# getlago/api:${{ steps.add_version.outputs.lago_version }} \ | |
# --amend getlago/api:${{ steps.add_version.outputs.lago_version }}-amd64 \ | |
# --amend getlago/api:${{ steps.add_version.outputs.lago_version }}-arm64 | |
# docker manifest push getlago/api:${{ steps.add_version.outputs.lago_version }} |