-
-
Notifications
You must be signed in to change notification settings - Fork 17
36 lines (34 loc) · 936 Bytes
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: test & release
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
pip3 install -r requirements.txt
- name: Test
run: python3 -m unittest recent_projects_test
release:
runs-on: ubuntu-latest
needs: test
if: startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/checkout@v4
- name: Get version from tag
id: get_version
run: echo "VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
- name: Build artifacts
run: python3 build.py ${{ env.VERSION }}
- name: Create release
uses: softprops/action-gh-release@v2
with:
files: '*.alfredworkflow'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}