Skip to content

fx risk of time overflow lock #55

fx risk of time overflow lock

fx risk of time overflow lock #55

Workflow file for this run

name: C/C++ CI
on:
push:
branches:
# Push events on master branch
- master
pull_request:
branches:
# Push events on master branch
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: make
run: make
- name: Get current date
id: date
run: echo "::set-output name=date::$(date +'%Y-%m-%d')"
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{steps.date.outputs.date}}
release_name: ${{steps.date.outputs.date}}
draft: false
prerelease: false
- name: make clean
run: make clean