Skip to content

Commit

Permalink
more files
Browse files Browse the repository at this point in the history
  • Loading branch information
Bryce Coon committed Apr 18, 2024
1 parent 9c0f264 commit 1dc0a42
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/pull-request-workflow.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
name: pull request environment
on:
pull_request:
types: [opened]
types: [opened, reopened]
push:
branches: [separateBranch]
jobs:
deploy-to-kubernetes:
runs-on: self-hosted
runs-on: brycelabel
steps:
- name: check out code
uses: actions/checkout@v4
- name: deploy kubernetes environment
run: |
export PULL_REQUEST_ID=${{ github.event.pull_request.number}}
export PULL_REQUEST_ID=${{ github.event.pull_request.number }}
kubectl create namespace bryce-pr-$PULL_REQUEST_ID || true
kubectl -n bryce-pr-$PULL_REQUEST_ID delete configmap blazor-web-postgres-init || true
kubectl -n bryce-pr-$PULL_REQUEST_ID create configmap blazor-web-postgres-init --from-file=../TestTicket/20240215.01.21.01.sql
kubectl -n bryce-pr-$PULL_REQUEST_ID create configmap blazor-web-postgres-init --from-file=./TestTicket/20240215.01.21.01.sql

0 comments on commit 1dc0a42

Please sign in to comment.