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 856c996 commit 99b6a4dCopy full SHA for 99b6a4d
.github/workflows/deploy.yml
@@ -1,12 +1,12 @@
1
on:
2
push:
3
branches:
4
- - main
+ - master
5
pull_request:
6
jobs:
7
build:
8
runs-on: ubuntu-latest
9
- if: github.ref != 'refs/heads/main'
+ if: github.ref != 'refs/heads/master'
10
steps:
11
- name: 'Checkout'
12
uses: actions/checkout@main
@@ -16,9 +16,10 @@ jobs:
16
BUILD_DIR: .
17
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
18
BUILD_ONLY: true
19
+
20
build_and_deploy:
21
- if: github.ref == 'refs/heads/main'
22
+ if: github.ref == 'refs/heads/master'
23
24
25
0 commit comments