Skip to content

feat: migrate to Vue 3 Composition API #152

feat: migrate to Vue 3 Composition API

feat: migrate to Vue 3 Composition API #152

Workflow file for this run

name: Build image
on:
push:
branches:
- master
pull_request:
env:
IMAGE_NAME: jomon
IMAGE_TAG: latest
jobs:
image:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to DockerHub
uses: docker/login-action@v3
if: github.event_name != 'pull_request'
with:
registry: ghcr.io
username: traptitech
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v6
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
platforms: linux/amd64
tags: |
ghcr.io/traptitech/${{ env.IMAGE_NAME }}:${{ env.IMAGE_TAG }}