diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ea6e938..003af50 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 }}' diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index b6e0471..10027d7 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -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 }}