mirror of
https://github.com/PepperDash/PepperDashCore.git
synced 2026-04-14 04:56:37 +00:00
fixed env variables and added steps to checkout build repos
This commit is contained in:
parent
524df330a1
commit
3c73308577
2 changed files with 14 additions and 1 deletions
13
.github/workflows/docker.yml
vendored
13
.github/workflows/docker.yml
vendored
|
|
@ -34,6 +34,19 @@ jobs:
|
|||
Write-Host "Setting build type to Release"
|
||||
Write-Output "::set-env name=BUILD_TYPE::Release"
|
||||
}
|
||||
- name: Checkout Builds Repo
|
||||
if: contains('release', env.BUILD_TYPE)
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
token: ${{ secrets.BUILD_TOKEN }}
|
||||
path: ./builds_repo
|
||||
repo: PepperDash/PepperDashCore-Builds
|
||||
- name: Checkout Builds Repo
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
token: ${{ secrets.BUILD_TOKEN }}
|
||||
path: ./internal_builds_repo
|
||||
repo: PepperDash-Engineering/pepperdash-core-builds
|
||||
- name: Fetch tags
|
||||
run: git fetch --tags
|
||||
- name: Set Version Number
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue