We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8dd07d commit 89895e6Copy full SHA for 89895e6
.github/workflows/build-and-push.yaml
@@ -6,7 +6,7 @@ on:
6
push:
7
branches:
8
- "develop"
9
- - "master"
+ - "main"
10
tags:
11
- "v*"
12
pull_request:
@@ -17,7 +17,7 @@ on:
17
- 'reopened'
18
19
- 'develop'
20
- - 'master'
+ - 'main'
21
22
jobs:
23
build:
@@ -38,7 +38,7 @@ jobs:
38
if ${{ github.ref_type == 'tag'}}; then
39
environment_name="prod"
40
credentials_json='${{ secrets.PIPELINE_EPO_PROD_PROJECT }}'
41
- elif ${{ contains(github.ref, 'master') || contains(github.base_ref, 'master') }}; then
+ elif ${{ contains(github.ref, 'main') || contains(github.base_ref, 'main') }}; then
42
environment_name="int"
43
credentials_json='${{ secrets.SKYVIEWER_INT_SERVICE_ACCOUNT }}'
44
else
0 commit comments