bitwrought 0.1.1

A data integrity checker
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
on: [workflow_dispatch, push]
concurrency:
  group: ${{ github.ref_name }}
  cancel-in-progress: true
permissions:
  contents: write
jobs:
  run-CI:
    name: run CI
    uses: ./.github/workflows/CI.yaml
  release:
    name: release
    if: ${{ startsWith(github.ref, 'refs/tags/') && contains(join(needs.*.result, ','), 'success') }}
    needs: [run-CI]
    uses: ./.github/workflows/release.yaml