From ab6705b4da024e06060ce250be107a2011031d32 Mon Sep 17 00:00:00 2001 From: Edwin Kofler Date: Fri, 29 Sep 2023 20:18:32 -0700 Subject: [PATCH] ci: Use new workflows --- .github/workflows/lint.yml | 8 ++++---- .github/workflows/site.yml | 16 ---------------- .github/workflows/test.yml | 9 +++++---- .github/workflows/website.yml | 17 +++++++++++++++++ 4 files changed, 26 insertions(+), 24 deletions(-) delete mode 100644 .github/workflows/site.yml create mode 100644 .github/workflows/website.yml diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 4132e62..45e822a 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -3,8 +3,7 @@ name: 'Lint' on: push: branches-ignore: ['*-no-ci'] - pull_request: - branches-ignore: ['*-no-ci'] + tags-ignore: ['*'] permissions: contents: 'read' @@ -12,5 +11,6 @@ permissions: id-token: 'write' jobs: - build: - uses: 'fox-land/hyperupcall-action/.github/workflows/lint.yml@cdde84c32fa05734584e9387c25656009bfc5fd1' + bash: + name: 'Bash' + uses: 'fox-land/hyperupcall-action/.github/workflows/bash-lint.yml@main' diff --git a/.github/workflows/site.yml b/.github/workflows/site.yml deleted file mode 100644 index 4abe1b5..0000000 --- a/.github/workflows/site.yml +++ /dev/null @@ -1,16 +0,0 @@ -name: 'Site' - -on: - push: - branches-ignore: ['*-no-ci'] - pull_request: - branches-ignore: ['*-no-ci'] - -permissions: - contents: 'read' - pages: 'write' - id-token: 'write' - -jobs: - build: - uses: 'fox-land/hyperupcall-action/.github/workflows/site.yml@cdde84c32fa05734584e9387c25656009bfc5fd1' diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1ece660..d524070 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -3,8 +3,8 @@ name: 'Test' on: push: branches-ignore: ['*-no-ci'] - pull_request: - branches-ignore: ['*-no-ci'] + # pull_request: + # branches-ignore: ['*-no-ci'] permissions: contents: 'read' @@ -12,5 +12,6 @@ permissions: id-token: 'write' jobs: - build: - uses: 'fox-land/hyperupcall-action/.github/workflows/test.yml@cdde84c32fa05734584e9387c25656009bfc5fd1' + bash: + name: 'Bash' + uses: 'fox-land/hyperupcall-action/.github/workflows/bash-test.yml@main' diff --git a/.github/workflows/website.yml b/.github/workflows/website.yml new file mode 100644 index 0000000..70479df --- /dev/null +++ b/.github/workflows/website.yml @@ -0,0 +1,17 @@ +name: 'Website' + +on: + push: + branches-ignore: ['*-no-ci'] + # pull_request: + # branches-ignore: ['*-no-ci'] + +permissions: + contents: 'read' + pages: 'write' + id-token: 'write' + +jobs: + build-and-deploy: + name: 'Build And Deploy' + uses: 'fox-land/hyperupcall-action/.github/workflows/website.yml@main'