fix: Turn failed external link checks into warnings #70
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: Bump version & Publish Docker Image | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
env: | |
REGISTRY: ghcr.io | |
IMAGE_NAME: ${{ github.repository_owner }}/voron_toolkit_docker | |
jobs: | |
build: | |
permissions: | |
contents: write | |
packages: write | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Bump version and push tag | |
id: tag_version | |
uses: mathieudutour/[email protected] | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build the test stage | |
if: ${{ steps.tag_version.outputs.new_tag != steps.tag_version.outputs.previous_tag }} | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
push: false | |
target: test | |
- name: Log in to the Container registry | |
if: ${{ steps.tag_version.outputs.new_tag != steps.tag_version.outputs.previous_tag }} | |
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1 | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Extract metadata (tags, labels) for Docker | |
if: ${{ steps.tag_version.outputs.new_tag != steps.tag_version.outputs.previous_tag }} | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} | |
tags: | | |
type=semver,pattern=v{{major}}.{{minor}}.{{patch}},value=${{ steps.tag_version.outputs.new_version }} | |
type=semver,pattern=v{{major}}.{{minor}},value=${{ steps.tag_version.outputs.new_version }} | |
type=semver,pattern=v{{major}},value=${{ steps.tag_version.outputs.new_version }} | |
- name: Build and push Docker image | |
if: ${{ steps.tag_version.outputs.new_tag != steps.tag_version.outputs.previous_tag }} | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
push: true | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
build-args: | | |
TOOLKIT_VERSION=${{ steps.tag_version.outputs.new_version }} | |
- 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 }} |