Skip to content

Commit

Permalink
refactor(changed env var)
Browse files Browse the repository at this point in the history
Co-authored-by: Sebastian Palmqvist <[email protected]>
  • Loading branch information
coolusername244 and PalmN72 committed Oct 18, 2023
1 parent 6683a62 commit 12570fe
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/build-android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,24 @@ jobs:
env:
BUNDLE_GEMFILE: ${{ github.workspace }}/app/Gemfile
steps:
- uses: actions/checkout@v3
- name: Checkout code
uses: actions/checkout@v3
with:
token: ${{ secrets.GITHUB_PERSONAL_ACCESS_TOKEN_PAT }}
# changed this from GITHUB_PERSONAL_ACCESS_TOKEN_PATH to GITHUB_TOKEN
token: ${{ secrets.GITHUB_TOKEN }}
submodules: true
- name: Set up our JDK environment
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 11
- uses: ruby/setup-ruby@v1
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.1.2'
bundler-cache: true
- uses: actions/setup-node@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '18.13'
cache: 'npm'
Expand Down

0 comments on commit 12570fe

Please sign in to comment.