35 lines
825 B
YAML
35 lines
825 B
YAML
name: C/C++ CI
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 16 * * *"
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: macos-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: make
|
|
run: make
|
|
- 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: macOS Nightly build
|
|
# Name of the tag for the release (will be associated with current branch)
|
|
automatic_release_tag: next
|
|
# File to release
|
|
files: nasal
|
|
|