From 917c08b80651b120541ab546bf2078dc2d1e751e Mon Sep 17 00:00:00 2001 From: Bryan Phelps Date: Tue, 15 Feb 2022 16:40:41 +0000 Subject: [PATCH 1/2] Disable deploy action --- .github/workflows/coder.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/coder.yaml b/.github/workflows/coder.yaml index f75fee6d7aa5f..a6b38158b94b4 100644 --- a/.github/workflows/coder.yaml +++ b/.github/workflows/coder.yaml @@ -187,7 +187,12 @@ jobs: deploy: name: "deploy" runs-on: ubuntu-latest - if: github.event_name != 'pull_request' + # Temporarily disable the 'deploy' job until issue is fixed: + # https://github.com/coder/coder/issues/287 + # As a part of a fix for that, uncomment the below line + # and delete the 'if' after: + # if: github.event_name != 'pull_request' + if: ${{ false }} permissions: contents: read id-token: write From ff48cd0cab90e6abb713bdd829923c1ac1b18d82 Mon Sep 17 00:00:00 2001 From: Bryan Phelps Date: Tue, 15 Feb 2022 16:50:52 +0000 Subject: [PATCH 2/2] Remove unnecessary squigglies --- .github/workflows/coder.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/coder.yaml b/.github/workflows/coder.yaml index a6b38158b94b4..c9f122aaad6ce 100644 --- a/.github/workflows/coder.yaml +++ b/.github/workflows/coder.yaml @@ -192,7 +192,7 @@ jobs: # As a part of a fix for that, uncomment the below line # and delete the 'if' after: # if: github.event_name != 'pull_request' - if: ${{ false }} + if: false permissions: contents: read id-token: write