Skip to content

Migration to gpc 0.8.0 (#9) #33

Migration to gpc 0.8.0 (#9)

Migration to gpc 0.8.0 (#9) #33

Workflow file for this run

name: ci
on:
workflow_dispatch:
push:
branches: [ "main" ]
paths: [ "input/**" ]
pull_request:
branches: [ "main" ]
paths: [ "input/**" ]
env:
GH_TOKEN: ${{ github.token }}
jobs:
# ----------------------------------------------------------------------
convert-files:
runs-on: ubuntu-latest
permissions: write-all
steps:
- uses: actions/checkout@v3
- run: gh release download wip --pattern 'gpc'
- run: chmod +x gpc
- run: ./gpc ./input/filelist.txt ./output
- run: rm gpc
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: generated by gpc
commit_user_name: volkerdoerr
commit_user_email: [email protected]
commit_author: volkerdoerr
commit_options: '--signoff'
# ----------------------------------------------------------------------
update-tag:
runs-on: ubuntu-latest
needs: convert-files
permissions: write-all
steps:
- uses: actions/checkout@v3
- uses: rickstaa/action-create-tag@v1
with:
tag: "wip"
message: "rolling: work in progress"
force_push_tag: true
# ----------------------------------------------------------------------