Freeze strings for translation #1229
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Submit dependencies to GitHub Dependency Graph | |
on: | |
push: | |
branches: | |
- trunk | |
- release/* | |
permissions: | |
contents: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- run: cp gradle.properties-example gradle.properties | |
- name: Setup Gradle to generate and submit dependency graphs | |
uses: gradle/actions/dependency-submission@v3 |