We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 17dee71 commit c85cc76Copy full SHA for c85cc76
2 files changed
.github/workflows/ci.yml
@@ -6,10 +6,10 @@ name: "CI"
6
7
on:
8
push:
9
- branches: ["master"]
+ branches: ["main"]
10
tags: ["*"]
11
pull_request:
12
13
14
jobs:
15
build:
@@ -56,7 +56,7 @@ jobs:
56
deploy:
57
needs: ["build"]
58
name: "Push Docker image to the Docker Hub"
59
- if: "${{ github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/') }}"
+ if: "${{ github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/') }}"
60
61
runs-on: "ubuntu-latest"
62
.github/workflows/release_tag.yml
@@ -29,7 +29,7 @@ jobs:
29
30
- uses: "actions/checkout@v3.0.2"
31
with:
32
- ref: "master"
+ ref: "main"
33
token: "${{ steps.token.outputs.token }}"
34
35
- name: "Install Python"
0 commit comments