-
Notifications
You must be signed in to change notification settings - Fork 81
43 lines (34 loc) · 924 Bytes
/
makefile.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
name: Makefile CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: install
run:
sh install_ubuntu.sh
sh binshell/make_release.sh
tar -czvf skynet_fly-master.tar.gz skynet-fly-release
- name: Debug List current working directory
run: ls -alh
- name: Debug List the release directory
run: ls -alh skynet-fly-release
release:
runs-on: ubuntu-latest
needs: [build]
steps:
- name: Debug List files in directory after build
run: |
ls -alh
- name: Create GitHub Release
uses: softprops/action-gh-release@master
with:
files: skynet_fly-master.tar.gz
tag_name: master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}