Skip to content

casper-1.5.5

casper-1.5.5 #108

Workflow file for this run

name: Config release
on:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Packaging config.tar.gz
run: |
tar -cvzf config.tar.gz -C config .
- name: Creating release
uses: ncipollo/release-action@v1
with:
artifacts: "config.tar.gz"
allowUpdates: true
token: ${{ secrets.GITHUB_TOKEN }}