Skip to content
This repository was archived by the owner on Aug 15, 2024. It is now read-only.

Commit c150097

Browse files
committed
fix: fix git-filter?
1 parent b8cf499 commit c150097

File tree

1 file changed

+21
-14
lines changed

1 file changed

+21
-14
lines changed

.github/workflows/ci.yml

Lines changed: 21 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,24 @@ jobs:
88
name: release
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v2
12-
with:
13-
fetch-depth: 0
14-
- name: Semantic release
15-
id: semantic
16-
uses: cycjimmy/semantic-release-action@v2
17-
with:
18-
extra_plugins: |
19-
@semantic-release/exec
20-
@semantic-release/changelog
21-
@semantic-release/git
22-
branch: master
23-
env:
24-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
11+
- name: Checkout repository
12+
uses: actions/checkout@v2
13+
with:
14+
fetch-depth: 0
15+
- name: Set up Python ${{ matrix.python-version }}
16+
uses: actions/setup-python@v1
17+
with:
18+
python-version: "3.8"
19+
- name: Install filter-repo
20+
run: pip3 install git-filter-repo
21+
- name: Semantic release
22+
id: semantic
23+
uses: cycjimmy/semantic-release-action@v2
24+
with:
25+
extra_plugins: |
26+
@semantic-release/exec
27+
@semantic-release/changelog
28+
@semantic-release/git
29+
branch: master
30+
env:
31+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)