Skip to content

add ch 1.3

add ch 1.3 #1

Workflow file for this run

name: Nightly Build
on:
push:
workflow_dispatch:
schedule:
- cron: '*/20 * * * *'
jobs:
date:
runs-on: ubuntu-latest
steps:
- name: Create a tag for the archive
run: echo "::set-output name=TAG::$(date +%F)"
id: tag
- name: Starting the nightly build for ${{ steps.tag.outputs.TAG }}
run: echo "The tag is ${{ steps.tag.outputs.TAG }}"
- name: Check out the code
uses: actions/checkout@v2
- name: Create the artifact
run: tar -cvf nightly-${{ steps.tag.outputs.TAG }}.tar ./*
- name: Upload the artifact
uses: actions/upload-artifact@v2
with:
name: nightly-${{ steps.tag.outputs.TAG }}.tar
path: nightly-${{ steps.tag.outputs.TAG }}.tar