Skip to content

Commit

Permalink
Well this is broken
Browse files Browse the repository at this point in the history
  • Loading branch information
StarNumber12046 committed Sep 14, 2024
1 parent 55e89fa commit 672dc2d
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,21 +10,26 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: πŸ— Setup Node
uses: actions/setup-node@v2
with:
node-version: "14"
cache: "yarn"
cache-dependency-path: "yarn.lock"

- name: πŸ”’ Decode google-services.json
run: |
echo "${{ secrets.ENCODED_GOOGLE_SERVICES }}" | base64 --decode > google-services.json
ls -la
- uses: mskelton/setup-yarn@v1

- uses: actions/setup-java@v2
with:
java-version: "17"
java-version: "17" # Change to 11 if you encounter compatibility issues
distribution: "zulu"

- name: πŸ— Setup EAS
uses: expo/expo-github-action@v8
with:
Expand All @@ -33,8 +38,10 @@ jobs:

- name: πŸ“¦ Install dependencies
run: yarn install --frozen-lockfile

- name: πŸš€ Build
run: eas build --profile preview --non-interactive --platform android --local --output=./ReBeal-release.apk
run: eas build --profile preview --non-interactive --platform android --local --output=./ReBeal-release.apk --clear-cache

- name: 😊 Create Release
id: create_release
uses: actions/create-release@v1
Expand All @@ -43,13 +50,14 @@ jobs:
with:
tag_name: ${{ github.ref_name }}
release_name: ReBeal ${{ github.ref_name }}

- name: πŸ˜€ Release
id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./ReBeal-release.apk
asset_name: ReBeal-release.apk
asset_content_type: application/vnd.android.package-archive

0 comments on commit 672dc2d

Please sign in to comment.