Skip to content

Commit d10b018

Browse files
committed
Checkout master branch instead of stable branch
1 parent 8215266 commit d10b018

1 file changed

Lines changed: 6 additions & 8 deletions

File tree

.github/workflows/deployDocs.yml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ on:
44
push:
55
branches:
66
- "stable"
7-
- "!master"
8-
- "!docs"
97

108
tags:
119
- "**"
@@ -18,8 +16,8 @@ jobs:
1816
runs-on: ubuntu-latest
1917
if: github.repository_owner == 'Float-Toolkit'
2018
steps:
21-
- name: Checkout stable branch
22-
uses: actions/checkout@stable
19+
- name: Checkout repository
20+
uses: actions/checkout@master
2321

2422
- name: Install dependencies
2523
run: npm ci
@@ -28,7 +26,7 @@ jobs:
2826
run: npm run docs
2927

3028
- name: Archive documentation artifact
31-
uses: actions/upload-artifact@stable
29+
uses: actions/upload-artifact@master
3230
with:
3331
name: docs
3432
path: docs
@@ -37,11 +35,11 @@ jobs:
3735
needs: build
3836
runs-on: ubuntu-latest
3937
steps:
40-
- name: Checkout stable branch
41-
uses: actions/checkout@stable
38+
- name: Checkout repository
39+
uses: actions/checkout@master
4240

4341
- name: Download artifact
44-
uses: actions/download-artifact@stable
42+
uses: actions/download-artifact@master
4543
with:
4644
name: docs
4745
path: docs

0 commit comments

Comments
 (0)