Files
github-push-action/.github/workflows/build.yml
Pascal Zimmermann 9870d48124 Update the release process and setup the process to specify tags (#145)
* feat: Update the release process
* feat: Update the GH action checkout version
2024-03-10 20:39:20 +01:00

20 lines
386 B
YAML

name: Action CI
on:
push:
branches: [master, main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Verify action syntax
# The action should not publish any real changes, but should succeed.
uses: './'
with:
github_token: '${{ secrets.GITHUB_TOKEN }}'
branch: '${{ github.ref }}'