diff --git a/.github/workflows/licensed.yml b/.github/workflows/licensed.yml index e1edb5ac3a..5b0dfbf9ac 100644 --- a/.github/workflows/licensed.yml +++ b/.github/workflows/licensed.yml @@ -1,5 +1,4 @@ -name: "Licensed" - +name: Licensed on: push: paths-ignore: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000000..48d47d7e0c --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,23 @@ +name: Check Release +on: + release: + types: [published] + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + steps: + + - uses: rez0n/actions-github-release@main + id: release + env: + token: ${{ secrets.GITHUB_TOKEN }} + repository: "markphelps/flipt" + type: "stable" + + - name: Verify Dockerhub + run: docker pull markphelps/flipt:{{ steps.release.outputs.release }} + + - name: Verify GHCR + run: docker pull ghcr.io/markphelps/flipt:{{ steps.release.outputs.release }} \ No newline at end of file diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index dd35d21cd0..252530e920 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,4 +1,4 @@ -name: Tests +name: Lint/Test on: push: paths-ignore: