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 e7231ba commit 9ffe7bdCopy full SHA for 9ffe7bd
.github/workflows/upgrade-aws.yml
@@ -12,7 +12,7 @@ jobs:
12
prepare-ecr:
13
name: Prepare ECR
14
runs-on: ubuntu-latest
15
- if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/prod' || github.ref == 'refs/heads/feat/aarch64'
+ if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/prod' || github.ref == 'refs/heads/feat/aarch64' # DO NOT MERGE
16
timeout-minutes: 1
17
outputs:
18
role: ${{ steps.prepare.outputs.role }}
@@ -30,6 +30,10 @@ jobs:
30
role=arn:aws:iam::983851922138:role/GHA,tippecanoe
31
branch=prod
32
;;
33
+ refs/heads/feat/aarch64) # DO NOT MERGE
34
+ role=arn:aws:iam::983851922138:role/GHA,tippecanoe
35
+ branch=master
36
+ ;;
37
*)
38
echo "Unknown ref: ${{github.ref}}"
39
exit 1
0 commit comments