mirror of
https://github.com/cloudnative-pg/plugin-barman-cloud.git
synced 2026-01-12 13:43:10 +01:00
Use tonistiigi/binfmt:qemu-v9.2.2-52 that fixes intermittent segmentation fault building for arm64 Signed-off-by: Marco Nenciarini <marco.nenciarini@enterprisedb.com>
35 lines
1012 B
YAML
35 lines
1012 B
YAML
name: Release Publish Artifacts
|
|
on:
|
|
release:
|
|
types: [published]
|
|
|
|
jobs:
|
|
release-publish-artifacts:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: docker/setup-qemu-action@v3
|
|
with:
|
|
image: tonistiigi/binfmt:qemu-v9.2.2-52
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
- name: Install Task
|
|
uses: arduino/setup-task@v2
|
|
- name: Install Dagger
|
|
env:
|
|
# renovate: datasource=github-tags depName=dagger/dagger versioning=semver
|
|
DAGGER_VERSION: 0.18.5
|
|
run: |
|
|
curl -L https://dl.dagger.io/dagger/install.sh | BIN_DIR=$HOME/.local/bin sh
|
|
- name: Create image and manifest
|
|
env:
|
|
REGISTRY_USER: ${{ github.actor }}
|
|
REGISTRY_PASSWORD: ${{ secrets.GITHUB_TOKEN }}
|
|
run: |
|
|
task publish
|
|
task manifest
|
|
- name: Attach manifest to release
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
run: |
|
|
task upload-manifest-to-release
|