-
Notifications
You must be signed in to change notification settings - Fork 1
53 lines (51 loc) · 1.47 KB
/
automaticRelease.yaml
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
name: automatic-release
on:
push:
branches:
- main
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '0 0 * * 6'
jobs:
pre-release:
name: Pre Release
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Build 64 bit version
run: cargo build --target x86_64-pc-windows-msvc --release
- name: create libmathcat64
uses: thedoctor0/[email protected]
with:
type: 'zip'
filename: '../../../libmathcat64.zip'
directory: target/x86_64-pc-windows-msvc/release
path: libmathcat_c*
- name: create rules.zip
uses: thedoctor0/[email protected]
with:
type: 'zip'
filename: 'Rules.zip'
directory: '.'
path: 'c-example/Rules'
- name: Build 32 bit version
run: cargo build --target i686-pc-windows-msvc --release
- name: create libmathcat32
uses: thedoctor0/[email protected]
with:
type: 'zip'
filename: '../../../libmathcat32.zip'
directory: target/i686-pc-windows-msvc/release
path: libmathcat_c*
- name: Automatic release
uses: marvinpinto/action-automatic-releases@latest
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
automatic_release_tag: latest
prerelease: true
title: Development Build
files: |
libmathcat*.zip
Rules.zip
c-example/mathcat.h