diff options
| author | 2025-10-23 01:47:40 +0700 | |
|---|---|---|
| committer | 2025-10-23 01:47:40 +0700 | |
| commit | 2ca5347331f7a0bf92671bb0e1706832ee7d69a9 (patch) | |
| tree | 523b86e4960a2eb0ea8dae7fb0e05cf4445e69cd /.github/workflows | |
| parent | 0b3f8d0a8ba153a7dc95e16ad3c158bdd5ef4c47 (diff) | |
| download | web-2ca5347331f7a0bf92671bb0e1706832ee7d69a9.tar.gz web-2ca5347331f7a0bf92671bb0e1706832ee7d69a9.zip | |
fix: remove quotes in ci where needed
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/build-and-deploy-prod.yml | 4 | ||||
| -rw-r--r-- | .github/workflows/build-and-deploy-stage.yml | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/build-and-deploy-prod.yml b/.github/workflows/build-and-deploy-prod.yml index 2654c11..d57e872 100644 --- a/.github/workflows/build-and-deploy-prod.yml +++ b/.github/workflows/build-and-deploy-prod.yml @@ -28,7 +28,7 @@ jobs: with: registry: ghcr.io username: ${{ github.repository_owner }} - password: "${{ secrets.GHCR_TOKEN }}" + password: ${{ secrets.GHCR_TOKEN }} - name: Build and push uses: docker/build-push-action@v6 with: @@ -53,7 +53,7 @@ jobs: run: | mkdir -p ~/.ssh (cat <<EOF - "${{ secrets.SVC_GITHUB_PK }}" + ${{ secrets.SVC_GITHUB_PK }} EOF ) > ~/.ssh/id_ed25519 chmod 600 ~/.ssh/id_ed25519 diff --git a/.github/workflows/build-and-deploy-stage.yml b/.github/workflows/build-and-deploy-stage.yml index bb3d7e1..16e6563 100644 --- a/.github/workflows/build-and-deploy-stage.yml +++ b/.github/workflows/build-and-deploy-stage.yml @@ -31,7 +31,7 @@ jobs: with: registry: ghcr.io username: ${{ github.repository_owner }} - password: "${{ secrets.GHCR_TOKEN }}" + password: ${{ secrets.GHCR_TOKEN }} - name: Set github short sha id: ghss_vars @@ -60,7 +60,7 @@ jobs: run: | mkdir -p ~/.ssh (cat <<EOF - "${{ secrets.SVC_GITHUB_PK }}" + ${{ secrets.SVC_GITHUB_PK }} EOF ) > ~/.ssh/id_ed25519 chmod 600 ~/.ssh/id_ed25519 |