Skip to content

Commit 212ee6a

Browse files
committed
chore(actions)
1 parent 32d169f commit 212ee6a

File tree

2 files changed

+19
-2
lines changed

2 files changed

+19
-2
lines changed

.github/workflows/publish.yml

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88

99
jobs:
10-
publish:
10+
test:
1111
runs-on: ubuntu-latest
1212

1313
strategy:
@@ -36,3 +36,20 @@ jobs:
3636

3737
- name: Test package
3838
run: twine check dist/*
39+
publish:
40+
runs-on: ubuntu-latest
41+
42+
needs: test
43+
44+
steps:
45+
- run: echo "Setup project.."
46+
- name: Cloning repository
47+
uses: actions/checkout@v2
48+
- name: Setup Python
49+
uses: actions/setup-python@v2
50+
51+
- name: Install Hatch
52+
run: pip install hatch
53+
54+
- name: Install twin
55+
run: pip install twine

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Meow Package Testing action
33
on:
44
push:
55
branches:
6-
- main
6+
- Dev
77

88

99
jobs:

0 commit comments

Comments
 (0)