bumped to rasca 0.9.1 #35
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Create Archive | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Create zip | |
uses: thedoctor0/[email protected] | |
with: | |
type: 'zip' | |
filename: 'yop-rascal-nl.zip' | |
exclusions: '*.git* /*node_modules/* .editorconfig' | |
- name: Get current date | |
id: date | |
run: echo "::set-output name=date::$(date +'%Y-%m-%d')" | |
- name: Upload zip | |
uses: ncipollo/[email protected] | |
with: | |
artifacts: "yop-rascal-nl.zip" | |
tag: ${{ steps.date.outputs.date }} | |
token: ${{ secrets.GITHUB_TOKEN }} |