mirror of
https://github.com/bitwarden/android.git
synced 2024-11-22 09:25:58 +03:00
Set token as environment variable for Gradle (#1404)
This commit is contained in:
parent
9e8bab2b81
commit
a8e87d5509
2 changed files with 4 additions and 1 deletions
1
.github/workflows/build.yml
vendored
1
.github/workflows/build.yml
vendored
|
@ -23,6 +23,7 @@ on:
|
||||||
type: boolean
|
type: boolean
|
||||||
|
|
||||||
env:
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
JAVA_VERSION: 17
|
JAVA_VERSION: 17
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|
4
.github/workflows/test.yml
vendored
4
.github/workflows/test.yml
vendored
|
@ -10,6 +10,7 @@ on:
|
||||||
types: [opened, synchronize]
|
types: [opened, synchronize]
|
||||||
|
|
||||||
env:
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
JAVA_VERSION: 17
|
JAVA_VERSION: 17
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
@ -23,8 +24,9 @@ jobs:
|
||||||
needs: check-run
|
needs: check-run
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
pull-requests: write
|
issues: write
|
||||||
packages: read
|
packages: read
|
||||||
|
pull-requests: write
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Check out repo
|
- name: Check out repo
|
||||||
|
|
Loading…
Reference in a new issue