Skip to content

🔨 Update CI/CD workflow to tag release versions and push to Docker registry. #8

🔨 Update CI/CD workflow to tag release versions and push to Docker registry.

🔨 Update CI/CD workflow to tag release versions and push to Docker registry. #8

Workflow file for this run

name: Check versions
on:
pull_request:
jobs:
docker:
runs-on: arc-arm64
steps:
- name: Bump version and push tag
id: tag_version
uses: mathieudutour/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
- name: Create a GitHub release
uses: ncipollo/release-action@v1
with:
tag: ${{ steps.tag_version.outputs.new_tag }}
name: Release ${{ steps.tag_version.outputs.new_tag }}
body: ${{ steps.tag_version.outputs.changelog }}
- name: Build and push
run: |
echo ${{ steps.tag_version.outputs.new_tag }}