Merge pull request #17 from sidi762/master
[Review needed] Added linux nightly build
This commit is contained in:
commit
b0f080070a
|
@ -10,10 +10,8 @@ on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
mac-build:
|
||||||
|
|
||||||
runs-on: macos-latest
|
runs-on: macos-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: make
|
- name: make
|
||||||
|
@ -33,7 +31,33 @@ jobs:
|
||||||
# Name of Release to add file to
|
# Name of Release to add file to
|
||||||
title: macOS Nightly build
|
title: macOS Nightly build
|
||||||
# Name of the tag for the release (will be associated with current branch)
|
# Name of the tag for the release (will be associated with current branch)
|
||||||
automatic_release_tag: next
|
automatic_release_tag: next_macOS
|
||||||
# File to release
|
# File to release
|
||||||
files: nasal-mac-nightly.tgz
|
files: nasal-mac-nightly.tgz
|
||||||
|
|
||||||
|
linux-x86_64-build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: make
|
||||||
|
run: |
|
||||||
|
make
|
||||||
|
cd module
|
||||||
|
make all
|
||||||
|
cd ..
|
||||||
|
touch nasal-linux-x86_64-nightly.tgz
|
||||||
|
tar -czf nasal-linux-x86_64-nightly.tgz --exclude=nasal-linux-x86_64-nightly.tgz .
|
||||||
|
- name: Release file
|
||||||
|
# You may pin to the exact commit or the version.
|
||||||
|
# uses: djnicholson/release-action@e9a535b3eced09c460e07a84118fb74ae9b53236
|
||||||
|
uses: marvinpinto/action-automatic-releases@v1.2.1
|
||||||
|
with:
|
||||||
|
# GitHub auth token
|
||||||
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
# Name of Release to add file to
|
||||||
|
title: Linux Nightly build
|
||||||
|
# Name of the tag for the release (will be associated with current branch)
|
||||||
|
automatic_release_tag: next_linux_x86_64
|
||||||
|
# File to release
|
||||||
|
files: nasal-linux-x86_64-nightly.tgz
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue