Test version #36
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: | ||
branch: | ||
- 'release/*' | ||
jobs: | ||
build-debian-package-jammy: | ||
name: build-image | ||
runs-on: ubuntu-latest | ||
permissions: | ||
packages: write | ||
contents: read | ||
id-token: write | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
- name: version | ||
run: | | ||
echo "YANET_VERSION_MAJOR=$([[ ${{github.ref_name}} =~ ([0-9]*) ]] && echo ${BASH_REMATCH[1]})" >> $GITHUB_ENV | ||
echo "YANET_VERSION_MINOR=$([[ ${{github.ref_name}} =~ [0-9]*.([0-9]*) ]] && echo ${BASH_REMATCH[1]})" >> $GITHUB_ENV | ||
- name: pituh | ||
run: | | ||
Check failure on line 26 in .github/workflows/release.yml GitHub Actions / ReleaseInvalid workflow file
|
||
echo "YANET_VERSION_MAJOR=$([[ ${{github.ref_name}} =~ ([0-9]*) ]] && echo ${BASH_REMATCH[1]})" | ||
echo "${YANET_VERSION_MAJOR} : ${{YANET_VERSION_MAJOR}}" | ||
- 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_MAJOR=${{YANET_VERSION_MAJOR}} | ||
YANET_VERSION_MINOR=${{YANET_VERSION_MINOR}} | ||
YANET_VERSION_REVISION=${{github.run_number}} | ||
YANET_VERSION_HASH=${{github.sha}} | ||
YANET_VERSION_CUSTOM=stable | ||
push: true | ||
tags: ${{ steps.meta.outputs.tags }} | ||
labels: ${{ steps.meta.outputs.labels }} |