Skip to content

Fix errors found after cherry-pick #537

Fix errors found after cherry-pick

Fix errors found after cherry-pick #537

Workflow file for this run

name: Release

Check failure on line 1 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yml

Invalid workflow file

(Line: 62, Col: 13): The identifier 'push' may not be used more than once within the same scope.
on:
push:
branch:
- "release/*"
jobs:
build-docker-image-noble:
name: build-image
runs-on: ubuntu-24.04
permissions:
packages: write
contents: read
id-token: write
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Define YANET version
run: |
YANET_VERSION=${{ github.ref_name }}
# Validate YANET version from tag value like a 65.1.1
YANET_SUBVERSIONS=( )
if [[ "${YANET_VERSION}" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
YANET_SUBVERSIONS=(${YANET_VERSION//./ })
fi
# Default values set to zeroes
echo YANET_VERSION_MAJOR=${YANET_SUBVERSIONS[0]:=0} >>$GITHUB_ENV
echo YANET_VERSION_MINOR=${YANET_SUBVERSIONS[1]:=0} >>$GITHUB_ENV
echo YANET_VERSION_REVISION=${YANET_SUBVERSIONS[2]:=0} >>$GITHUB_ENV
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: yanetplatform/yanet
- name: Log in to Docker Hub
uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push Docker image
id: push
uses: docker/build-push-action@3b5e8027fcad23fda98b2e3ac259d8d67585f671
with:
context: .
file: ./build/Dockerfile.image
build-args: |
YANET_VERSION_CUSTOM=stable
YANET_VERSION_HASH=${{ github.sha }}
YANET_VERSION_MAJOR=${{ env.YANET_VERSION_MAJOR }}
YANET_VERSION_MINOR=${{ env.YANET_VERSION_MINOR }}
YANET_VERSION_REVISION=${{ env.YANET_VERSION_REVISION }}
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
- name: Build and push Docker image for yanet-announcer
id: push
uses: docker/build-push-action@3b5e8027fcad23fda98b2e3ac259d8d67585f671
with:
file: ./image/yanet-announcer/Dockerfile
push: true
tags: yanetplatform/yanet-announcer:${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}