Skip to content

feat: 申請のステータス関連のUIの色と表示を調整 #162

feat: 申請のステータス関連のUIの色と表示を調整

feat: 申請のステータス関連のUIの色と表示を調整 #162

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: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/traptitech/jomon
tags: |
type=raw,value=latest
type=sha,format=long,prefix=
- name: Build and push
uses: docker/build-push-action@v6
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
platforms: linux/amd64
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
provenance: false