diff options
| author | Linnea Gräf <nea@nea.moe> | 2023-11-18 06:06:18 +0100 |
|---|---|---|
| committer | Linnea Gräf <nea@nea.moe> | 2023-12-04 20:46:40 +0100 |
| commit | ac14fe8fe04c44e2e08fa90b5cc8fdce293c2ab1 (patch) | |
| tree | 79a72c3593d4e0304419c259559b371f12bd5249 /.github/workflows | |
| parent | d9a1a8dda967f40bd4a7a2707bf3ff5411093e7d (diff) | |
| download | SkyHanni-repopatterns.tar.gz SkyHanni-repopatterns.tar.bz2 SkyHanni-repopatterns.zip | |
Add RepoPatternsrepopatterns
RepoPatterns allow us to easily update regexes without creating a new release.
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/generate-constants.yaml | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/.github/workflows/generate-constants.yaml b/.github/workflows/generate-constants.yaml new file mode 100644 index 000000000..c5f667bad --- /dev/null +++ b/.github/workflows/generate-constants.yaml @@ -0,0 +1,62 @@ +# Read the Javadoc of RepoPatternDump for more info + +name: RepoPattern + +env: + data_repo: nea89o/SkyHanni-REPO + +on: + push: + workflow_dispatch: + +permissions: { } + +jobs: + regexes: + runs-on: ubuntu-latest + name: "Generate regexes" + steps: + - uses: actions/checkout@v3 + - name: Set up JDK 17 + uses: actions/setup-java@v3 + with: + java-version: 17 + distribution: temurin + cache: gradle + - name: Setup gradle + uses: gradle/gradle-build-action@v2 + - name: Generate Repo Patterns using Gradle + run: | + ./gradlew generateRepoPatterns --stacktrace + - uses: actions/upload-artifact@v3 + name: Upload generated repo regexes + with: + name: Repo Regexes + path: build/regexes/constants.json + publish-regexes: + runs-on: ubuntu-latest + needs: regexes + name: "Publish regexes" + if: ${{ 'push' == github.event_name && 'beta' == github.ref_name }} + steps: + - uses: actions/checkout@v3 + with: + repository: ${{ env.data_repo }} + branch: main + - uses: actions/download-artifact@v3 + name: Upload generated repo regexes + with: + name: Repo Regexes + - name: Commit generated regex + run: | + mkdir -p constants/ + mv constants.json constants/regexes.json + git config user.name 'github-actions[bot]' + git config user.email 'github-action@users.noreply.github.com' + git add constants/regexes.json + git commit -m "Update regexes based on https://github.com/hannibal002/Skyhanni/commit/$GITHUB_SHA" + - name: Publish new repository + run: | + git config --unset-all http.https://github.com/.extraheader + git remote add restream https://user:${{secrets.REPO_PAT}}@github.com/${{env.data_repo}} + git push restream HEAD:main |
