Merge pull request #3 from LunarClient/add-missing-math-functions #10
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: Deploy | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
deploy: | |
permissions: | |
id-token: write | |
contents: read | |
runs-on: ubuntu-latest | |
name: Deploy | |
steps: | |
- name: Checkout from GitHub | |
uses: actions/checkout@master | |
- name: Configure Google Cloud credentials | |
uses: google-github-actions/auth@v1 | |
with: | |
workload_identity_provider: 'projects/271010089174/locations/global/workloadIdentityPools/github/providers/github-oidc' | |
service_account: 'github-actions@moonsworth-299m4oir.iam.gserviceaccount.com' | |
- name: Use JDK 16 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 16 | |
- name: Build | |
run: ./gradlew publish |