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 0671722 commit 7e8fdd2Copy full SHA for 7e8fdd2
.github/workflows/main.yml
@@ -2,17 +2,17 @@ name: Build and test
2
3
on:
4
push:
5
- branches: [main]
+ branches: [main, cideploy]
6
7
jobs:
8
build-and-deploy:
9
runs-on: ubuntu-latest
10
11
steps:
12
- - uses: actions/checkout@v3
13
- - uses: actions/setup-node@v3
+ - uses: actions/checkout@v4
+ - uses: actions/setup-node@v4
14
with:
15
- node-version: 18
+ node-version: 22
16
17
- name: Prepare
18
run: |
@@ -31,7 +31,7 @@ jobs:
31
ng add angular-cli-ghpages
32
33
- name: Deploy
34
- if: github.ref == 'refs/heads/master'
+ if: github.ref == 'refs/heads/cideploy'
35
env:
36
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
37
0 commit comments