Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
DerekRoberts committed May 19, 2023
1 parent f674390 commit 921adc2
Showing 1 changed file with 30 additions and 31 deletions.
61 changes: 30 additions & 31 deletions .github/workflows/pr-open.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,40 +19,39 @@ jobs:
- uses: ./
with:
package: backend
# repository: bcgov/nr-quickstart-typescript
tag: ${{ github.event.number }}
tag_fallback: test
token: ${{ secrets.GITHUB_TOKEN }}
triggers: ('backend/')

# # QuickStart apps build from the same dirs as their Dockerfiles
# basic:
# permissions:
# packages: write
# name: Basic
# runs-on: ubuntu-22.04
# steps:
# - uses: actions/checkout@v3
# - uses: ./
# with:
# package: frontend
# repository: bcgov/nr-quickstart-typescript
# tag: ${{ github.event.number }}
# token: ${{ secrets.GITHUB_TOKEN }}
# QuickStart apps build from the same dirs as their Dockerfiles
basic:
permissions:
packages: write
name: Basic
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: ./
with:
package: frontend
repository: bcgov/nr-quickstart-typescript
tag: ${{ github.event.number }}
token: ${{ secrets.GITHUB_TOKEN }}

# # FOM apps build from repo root, one above their Dockerfiles
# advanced:
# permissions:
# packages: write
# name: Advanced
# runs-on: ubuntu-22.04
# steps:
# - uses: actions/checkout@v3
# - uses: ./
# with:
# package: api
# build_context: .
# build_file: api/Dockerfile
# repository: bcgov/nr-fom
# tag: ${{ github.event.number }}
# token: ${{ secrets.GITHUB_TOKEN }}
# FOM apps build from repo root, one above their Dockerfiles
advanced:
permissions:
packages: write
name: Advanced
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: ./
with:
package: api
build_context: .
build_file: api/Dockerfile
repository: bcgov/nr-fom
tag: ${{ github.event.number }}
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 921adc2

Please sign in to comment.