forked from release-engineering/pubtools-sign
-
Notifications
You must be signed in to change notification settings - Fork 0
49 lines (46 loc) · 1.43 KB
/
release.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
37
38
39
40
41
42
43
44
45
46
47
48
49
name: Release on PyPI and github
on:
release:
types: [created]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine build
- name: Build and publish
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
run: |
python -m build -s --wheel
twine upload dist/*
build-appimage:
needs: deploy
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- name: Build AppImage
uses: AppImageCrafters/build-appimage-action@master
env:
UPDATE_INFO: gh-releases-zsync|release-engineering|pubtools-sign|latest|*x86_64.AppImage.zsync
VERSION: ${{ github.ref_name }}
with:
recipe: AppImageBuilder.yml
- name: Upload artifact
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
imagefile1=$(ls ${{ github.workspace }}/*.AppImage |awk -F/ '{print $NF}')
imagefile2=$(ls ${{ github.workspace }}/*.AppImage.zsync |awk -F/ '{print $NF}')
gh release upload ${{ github.ref_name }} $imagefile1
gh release upload ${{ github.ref_name }} $imagefile2