Skip to content

Commit

Permalink
fix: [VIO-3010] Attempt to use private workflows
Browse files Browse the repository at this point in the history
This is an attempt to enable the use of private workflows.
  • Loading branch information
AdamIsrael committed Jul 17, 2023
1 parent 79acd78 commit e004c20
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,17 @@ jobs:
steps:
- uses: actions/checkout@v3

- uses: ./.github/actions/build-pr-image
- name: Checkout vapor-ware workflows
uses: actions/checkout@v3
with:
repository: vapor-ware/workflows
# token: ${{ secrets.VIO_REPO_READ }}
token: ${{ secrets.VIO_PUBLIC_REPO }}
ref: main
path: vapor-ware-workflows

# - uses: ./.github/actions/build-pr-image
- uses: ./vapor-ware-workflows/.github/actions/build-pr-image
id: build-env
with:
REGISTRY: docker.io
Expand All @@ -22,7 +32,8 @@ jobs:
PASSWORD: ${{ secrets.DOCKERHUB_TOKEN }}
IMAGENAME: synse-server

- uses: ./.github/actions/scan-image
# - uses: ./.github/actions/scan-image
- uses: ./vapor-ware-workflows/.github/actions/scan-image
id: scan-image
with:
image: ${{ steps.build-env.outputs.image-archive }}
Expand Down

0 comments on commit e004c20

Please sign in to comment.