diff options
Diffstat (limited to 'goodgen/.github/workflows')
-rw-r--r-- | goodgen/.github/workflows/build-and-test.yml | 15 | ||||
-rw-r--r-- | goodgen/.github/workflows/release-tags.yml | 14 |
2 files changed, 29 insertions, 0 deletions
diff --git a/goodgen/.github/workflows/build-and-test.yml b/goodgen/.github/workflows/build-and-test.yml new file mode 100644 index 0000000000..d33f352e71 --- /dev/null +++ b/goodgen/.github/workflows/build-and-test.yml @@ -0,0 +1,15 @@ + +name: Build and test + +on: + pull_request: + branches: [ master, main ] + push: + branches: [ master, main ] + +jobs: + build-and-test: + uses: GTNewHorizons/GTNH-Actions-Workflows/.github/workflows/build-and-test.yml@master + secrets: inherit + with: + timeout: 150 diff --git a/goodgen/.github/workflows/release-tags.yml b/goodgen/.github/workflows/release-tags.yml new file mode 100644 index 0000000000..e4c0be6b0d --- /dev/null +++ b/goodgen/.github/workflows/release-tags.yml @@ -0,0 +1,14 @@ + +name: Release tagged build + +on: + push: + tags: [ '*' ] + +permissions: + contents: write + +jobs: + release-tags: + uses: GTNewHorizons/GTNH-Actions-Workflows/.github/workflows/release-tags.yml@master + secrets: inherit |