chore(deps): update dependency vitest to v2.1.5 (#251) #334
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: Build Latest | |
on: | |
workflow_dispatch: | |
push: | |
branches: [main] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: Build Docker Image | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
with: | |
fetch-depth: 1 | |
- name: Login to GHCR | |
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3 | |
with: | |
registry: ghcr.io | |
username: ${{ secrets.GHCR_USERNAME }} | |
password: ${{ secrets.GHCR_PASSWORD }} | |
- name: Docker meta | |
id: meta | |
uses: docker/metadata-action@8e5442c4ef9f78752691e2d8f8d19755c6f78e81 # v5 | |
with: | |
# list of Docker images to use as base name for tags | |
images: | | |
ghcr.io/szinn/wordacle | |
# generate Docker tags based on the following events/attributes | |
tags: | | |
type=raw,value=latest | |
type=sha | |
# - name: Setup workflow Variables | |
# id: vars | |
# shell: bash | |
# run: |- | |
# VERSION="latest" | |
# if test "$GITHUB_EVENT_NAME" == "workflow_dispatch"; then | |
# VERSION=$(cat VERSION) | |
# fi | |
# echo "::set-output name=version::$VERSION" | |
# echo "::set-output name=tag_version::tesla-spy:$VERSION" | |
# - name: Setup QEMU | |
# uses: docker/setup-qemu-action@68827325e0b33c7199eb31dd4e31fbe9023e06e3 # v3.0.0 | |
- name: Setup Docker Buildx | |
id: buildx | |
uses: docker/setup-buildx-action@c47758b77c9736f4b2ef4073d4d51994fabfe349 # v3.7.1 | |
- name: Build container image | |
uses: docker/build-push-action@4f58ea79222b3b9dc2c8bbdd6debcef730109a75 # v6 | |
with: | |
# build-args: |- | |
# VERSION=${{ steps.vars.outputs.version }} | |
context: . | |
platforms: linux/amd64 # load does not support muti-arch https://github.com/docker/buildx/issues/290 | |
file: Dockerfile | |
push: true | |
tags: ${{ steps.meta.outputs.tags }} | |
cache-from: type=gha | |
cache-to: type=gha,mode=max |