Skip to content

replaced board_root with project_root #13

replaced board_root with project_root

replaced board_root with project_root #13

name: Publish image
on:
push:
tags:
- 'v*.*.*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Get current tag
id: get-current-tag
uses: zingimmick/github-action-get-current-tag@v1
- name: Build and publish a Docker image for ${{ github.repository }}
uses: macbre/push-to-ghcr@master
with:
image_name: ${{ github.repository }} # it will be lowercased internally
github_token: ${{ secrets.GITHUB_TOKEN }}
image_tag: ${{steps.get-current-tag.outputs.tag}}