We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b0d93fe commit f746f7fCopy full SHA for f746f7f
.github/workflows/tag-and-release.yml
@@ -2,13 +2,17 @@ name: Test and maybe create a new release
2
3
on:
4
push:
5
- branches:
6
- - master
+ branches: [master, v3]
7
permissions:
8
contents: write
9
jobs:
10
test:
11
- uses: ./.github/workflows/reusable-testing.yml
+ runs-on: ubuntu-latest
+ steps:
12
+ - uses: actions/checkout@v2
13
+ with:
14
+ fetch-depth: 0
15
+ - uses: ./.github/workflows/reusable-testing.yml
16
tag:
17
runs-on: ubuntu-latest
18
needs: test
0 commit comments