Skip to content

Steuerung von Abständen über Ini-Datei #49

Steuerung von Abständen über Ini-Datei

Steuerung von Abständen über Ini-Datei #49

Workflow file for this run

name: Continuous Release
on:
push:
branches:
- master
jobs:
create-zip:
runs-on: ubuntu-latest
if: "contains(github.event.head_commit.message, 'release')"
steps:
- uses: actions/checkout@v1
- run: mkdir .zip
- run: for i in */; do zip -r ."/.zip/${i%/}_$(date +'%Y_%m_%d').zip" "$i" *.pdf; done
- uses: ncipollo/release-action@v1
with:
artifacts: "./.zip/*"
allowUpdates: true
tag: v1.0.${{ github.run_number }}
token: ${{ secrets.GITHUB_TOKEN }}