Skip to content

Commit

Permalink
add env vars for ci builds
Browse files Browse the repository at this point in the history
  • Loading branch information
barnhill committed Jun 18, 2023
1 parent 708769e commit 85bb7b5
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,20 @@
name: Android CI

on:
workflow_dispatch:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
java: [ '17' ]

environment: build

steps:
- uses: actions/checkout@v3
- name: set up JDK ${{ matrix.java }}
Expand All @@ -31,6 +30,9 @@ jobs:
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.MAVENCENTRALPASSWORD }}
ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.SIGNING_PRIVATE_KEY }}
ORG_GRADLE_PROJECT_signingInMemoryKeyPassword: ${{ secrets.SIGNING_PASSWORD }}
REMOTE_CACHE_URL: ${{ secrets.REMOTE_CACHE_URL }}
REMOTE_CACHE_USER: ${{ secrets.REMOTE_CACHE_USER }}
REMOTE_CACHE_PASS: ${{ secrets.REMOTE_CACHE_PASS }}
- uses: actions/upload-artifact@v3
with:
name: Package
Expand Down

0 comments on commit 85bb7b5

Please sign in to comment.