Skip to content

Bump version: 1.0.0-dev.3 → 1.0.0-dev.4 #9

Bump version: 1.0.0-dev.3 → 1.0.0-dev.4

Bump version: 1.0.0-dev.3 → 1.0.0-dev.4 #9

Workflow file for this run

name: docker-image
on:
push:
tags:
- "*"
env:
VERSION: 1.0.0-dev.4
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: |

Check failure on line 22 in .github/workflows/docker-image.yml

View workflow run for this annotation

GitHub Actions / docker-image

Invalid workflow file

The workflow is not valid. .github/workflows/docker-image.yml (Line: 22, Col: 27): Unrecognized named-value: 'GITHUB_ACTION_REPOSITORY'. Located at position 1 within expression: GITHUB_ACTION_REPOSITORY
${{ GITHUB_ACTION_REPOSITORY }}
ghcr.io/${{ GITHUB_ACTOR }}/${{ GITHUB_ACTION_REPOSITORY }}
tags: |
type=raw,value=${{ env.VERSION }}
type=sha
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Login to GHCR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}