awesome-selfhosted-data/.github/workflows/build.yml
nodiscc 423b418371
tools/github actions: fix concurrency between workflows
- only jobs that are part of the same workflow should not run concurrently
2023-07-22 19:13:03 +02:00

18 lines
289 B
YAML

name: build
on:
push:
branches: [ master ]
workflow_dispatch:
concurrency:
group: build-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: make awesome_lint
- run: make export