This commit is contained in:
Shahrad Elahi 2024-05-22 08:53:59 +03:30
parent 3ad9bcb43f
commit 9ee534f2bb
No known key found for this signature in database
2 changed files with 6 additions and 7 deletions

View File

@ -38,7 +38,6 @@ jobs:
- uses: actions/checkout@v4
- uses: docker/setup-buildx-action@v3
- name: Login to GitHub Container Registry
if: github.event_name != 'pull_request'
uses: docker/login-action@v3
@ -53,5 +52,5 @@ jobs:
context: .
file: ./Dockerfile
push: ${{ github.event_name != 'pull_request' }}
platforms: "${{ env.BUILD_PLATFORMS }}"
tags: "${{ env.GHCR_SLUG }}:${{ env.TAG }}"
platforms: '${{ env.BUILD_PLATFORMS }}'
tags: '${{ env.GHCR_SLUG }}:${{ env.TAG }}'

View File

@ -5,7 +5,7 @@ on:
branches:
- canary
concurrency: "${{ github.workflow }}-${{ github.ref }}"
concurrency: '${{ github.workflow }}-${{ github.ref }}'
env:
GHCR_SLUG: ghcr.io/wireadmin/wireadmin
@ -25,7 +25,7 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: 18
cache: "pnpm"
cache: 'pnpm'
- name: Install Dependencies
run: pnpm install
@ -34,8 +34,8 @@ jobs:
id: changesets
uses: changesets/action@v1
with:
commit: "chore(release): version package"
title: "chore(release): version package"
commit: 'chore(release): version package'
title: 'chore(release): version package'
publish: pnpm ci:publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}