Browse Source

Fix workflow_call error (#124)

pull/125/head
Vince Grassia 3 years ago committed by GitHub
parent
commit
6c4d51287d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 10
      .github/workflows/build-unified.yml

10
.github/workflows/build-unified.yml

@ -30,7 +30,15 @@ jobs: @@ -30,7 +30,15 @@ jobs:
name: Build Docker image
runs-on: ubuntu-22.04
steps:
- name: Checkout repo
- name: Checkout Repository - workflow_call
if: ${{ github.event_name == 'workflow_call' }}
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
with:
repository: bitwarden/self-host
ref: master
- name: Checkout Repository - workflow_dispatch
if: ${{ github.event_name == 'workflow_dispatch' }}
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
- name: Get server branch to checkout

Loading…
Cancel
Save