Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/build-and-deploy-prod.yml | 6 | ||||
| -rw-r--r-- | .github/workflows/build-and-deploy-stage.yml | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/build-and-deploy-prod.yml b/.github/workflows/build-and-deploy-prod.yml index 413f402..2654c11 100644 --- a/.github/workflows/build-and-deploy-prod.yml +++ b/.github/workflows/build-and-deploy-prod.yml @@ -12,7 +12,7 @@ jobs: packages: write steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v4 - name: Generate output.css with tailwindcss uses: ZoeyVid/tailwindcss-update@main with: @@ -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 c6e222b..bb3d7e1 100644 --- a/.github/workflows/build-and-deploy-stage.yml +++ b/.github/workflows/build-and-deploy-stage.yml @@ -11,7 +11,7 @@ jobs: packages: write steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v4 - name: Generate output.css with tailwindcss uses: ZoeyVid/tailwindcss-update@main @@ -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 |