merge conflict fix: caip-10 name fixed for prajna #289
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: | |
push: | |
tags: | |
- "v[0-9]+.[0-9]+.[0-9]+" | |
- "v[0-9]+.[0-9]+.[0-9]+-rc.[0-9]+" | |
permissions: | |
contents: write | |
packages: write | |
jobs: | |
release-binaries-github: | |
name: Release Binaries to Github | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Make release | |
run: | | |
make release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Clean release folder | |
run: | | |
sudo rm -rf dist | |
publish-docker: | |
name: Publish Docker Image (linux/amd64) | |
runs-on: ubuntu-latest | |
needs: release-binaries-github | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Set Latest Tag | |
run: echo "LATEST_RELEASE_TAG=$(git describe --tags --abbrev=0)" >> $GITHUB_ENV | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: 1.21 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v1 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
id: buildx | |
with: | |
version: latest | |
- name: Docker Login | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Prepare Docker Metadata | |
id: docker-build | |
uses: docker/metadata-action@v4 | |
with: | |
images: ghcr.io/${{ github.repository}} | |
flavor: | | |
latest=auto | |
tags: | | |
type=semver,pattern={{version}},value=${{ env.LATEST_RELEASE_TAG }} | |
labels: | | |
org.opencontainers.image.vendor="Hypermine Limited" | |
org.opencontainers.image.title="Hypersign Identity Network" | |
org.opencontainers.image.description="A permissionless blockchain network to manage digital identity and access rights" | |
org.opencontainers.image.source="https://github.com/hypersign-protocol/hid-node" | |
org.opencontainers.image.documentation="https://docs.hypersign.id" | |
- name: Build and push image | |
uses: docker/build-push-action@v3 | |
with: | |
context: . | |
platforms: linux/amd64 | |
push: true | |
tags: ${{ steps.docker-build.outputs.tags }} | |
labels: ${{ steps.docker-build.outputs.labels }} |