Skip to content

Commit 2d92a15

Browse files
committed
create-pr
1 parent 81752d1 commit 2d92a15

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/pr-deploy.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ jobs:
217217
needs: [build, get_info]
218218
# Run deploy job only if build job was successful or skipped
219219
if: |
220-
always() && (needs.build.result == 'success' || needs.build.result == 'skipped') &&
220+
always() && (needs.build.result == 'success' || needs.build.result == 'skipped') &&
221221
(github.event_name == 'workflow_dispatch' || needs.get_info.outputs.NEW == 'false')
222222
runs-on: "ubuntu-latest"
223223
env:
@@ -438,6 +438,8 @@ jobs:
438438
439439
# Create template
440440
coder templates init --id kubernetes && cd ./kubernetes/ && coder templates create -y --variable namespace=pr${{ env.PR_NUMBER }}
441+
#git clone https://github.com/matifali/coder-templates.git
442+
#cd ./coder-templates/k8s-namespace/ && coder templates create -y --variable namespace=pr${{ env.PR_NUMBER }}
441443
442444
# Create workspace
443445
cat <<EOF > workspace.yaml

0 commit comments

Comments
 (0)