-
Notifications
You must be signed in to change notification settings - Fork 1
42 lines (32 loc) · 923 Bytes
/
release.yml
File metadata and controls
42 lines (32 loc) · 923 Bytes
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
name: Release
on:
push:
tags:
- '*.*.*' # Match any semantic version tag, adjust as needed
jobs:
release:
runs-on: ubuntu-20.04
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up build environment
working-directory: ./strongmod
run: make setup-environment
- name: Download and unzip python
working-directory: ./strongmod
run: make download-and-unzip-cpython
- name: Compile project
working-directory: ./strongmod
run: make
- name: Compile project
working-directory: ./strongmod
run: make EXTREME=1
- name: Zip project
working-directory: ./strongmod
run: make zip-project
- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: false
files: |
./strongmod/strongmod.zip