forked from stratumauth/icons
-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (44 loc) · 1.33 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
50
51
52
53
54
name: Release
run-name: Release @ Delta AuthenticatorPro Icons - ${{ github.sha }}
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
cache: "pip"
- name: Install pip packages
run: pip install -r requirements.txt
- name: Install Cargo
run: which cargo || sudo apt-get install -y cargo
- name: Set up Cargo cache
uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Install oxipng
run: which oxipng || cargo install oxipng
- name: Build packs
run: |
for builder in build_*.py; do
python3 $builder
done
- name: Get current date
run: echo "CURRENT_DATE=$(date +'%Y%m%d')" >> $GITHUB_ENV
- name: Create a GitHub release
uses: softprops/[email protected]
with:
files: "*.iconpack"
name: v${{ env.CURRENT_DATE }}
tag_name: v${{ env.CURRENT_DATE }}