Skip to content

Commit

Permalink
disabling Google Play releases since I don't want to publicize my hom…
Browse files Browse the repository at this point in the history
…e address (#83) (#84)

* don't deploy to Google Play

[skip ci]

* don't deploy to google play store

[skip ci]
  • Loading branch information
aschuhardt authored Nov 12, 2024
1 parent 639a758 commit f90005a
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 52 deletions.
52 changes: 26 additions & 26 deletions .github/workflows/deploy-beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,32 +30,32 @@ jobs:
- name: Read Version
id: read_version
run: echo "version=$(cat version | tr -d '\r\n')" >> "$GITHUB_OUTPUT"
deploy_google:
runs-on: ubuntu-latest
name: Deploy to Google Play
needs: read_version
steps:
- name: Checkout
uses: actions/checkout@v4.1.1
with:
fetch-depth: 0
- name: Download workflow artifact
uses: dawidd6/action-download-artifact@v2
with:
workflow: build.yml
branch: beta
allow_forks: false
- name: Copy Files
run: cp ./**/*.aab .
- name: Upload
uses: r0adkll/upload-google-play@v1.0.19
with:
serviceAccountJsonPlainText: ${{ secrets.SERVICES_ACCOUNT_JSON }}
packageName: app.rosy_crow
releaseFiles: app.rosy_crow-Signed.aab
releaseName: ${{ needs.read_version.outputs.version }}
track: beta
status: completed
# deploy_google:
# runs-on: ubuntu-latest
# name: Deploy to Google Play
# needs: read_version
# steps:
# - name: Checkout
# uses: actions/checkout@v4.1.1
# with:
# fetch-depth: 0
# - name: Download workflow artifact
# uses: dawidd6/action-download-artifact@v2
# with:
# workflow: build.yml
# branch: beta
# allow_forks: false
# - name: Copy Files
# run: cp ./**/*.aab .
# - name: Upload
# uses: r0adkll/upload-google-play@v1.0.19
# with:
# serviceAccountJsonPlainText: ${{ secrets.SERVICES_ACCOUNT_JSON }}
# packageName: app.rosy_crow
# releaseFiles: app.rosy_crow-Signed.aab
# releaseName: ${{ needs.read_version.outputs.version }}
# track: beta
# status: completed
deploy_fdroid:
runs-on: ubuntu-latest
name: Deploy to F-Droid
Expand Down
52 changes: 26 additions & 26 deletions .github/workflows/deploy-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,32 +30,32 @@ jobs:
- name: Read Version
id: read_version
run: echo "version=$(cat version | tr -d '\r\n')" >> "$GITHUB_OUTPUT"
deploy_google:
runs-on: ubuntu-latest
name: Deploy to Google Play
needs: read_version
steps:
- name: Checkout
uses: actions/checkout@v4.1.1
with:
fetch-depth: 0
- name: Download workflow artifact
uses: dawidd6/action-download-artifact@v2
with:
workflow: build.yml
branch: main
allow_forks: false
- name: Copy Files
run: cp ./**/*.aab .
- name: Upload
uses: r0adkll/upload-google-play@v1.0.19
with:
serviceAccountJsonPlainText: ${{ secrets.SERVICES_ACCOUNT_JSON }}
packageName: app.rosy_crow
releaseFiles: app.rosy_crow-Signed.aab
releaseName: ${{ needs.read_version.outputs.version }}
track: production
status: completed
# deploy_google:
# runs-on: ubuntu-latest
# name: Deploy to Google Play
# needs: read_version
# steps:
# - name: Checkout
# uses: actions/checkout@v4.1.1
# with:
# fetch-depth: 0
# - name: Download workflow artifact
# uses: dawidd6/action-download-artifact@v2
# with:
# workflow: build.yml
# branch: main
# allow_forks: false
# - name: Copy Files
# run: cp ./**/*.aab .
# - name: Upload
# uses: r0adkll/upload-google-play@v1.0.19
# with:
# serviceAccountJsonPlainText: ${{ secrets.SERVICES_ACCOUNT_JSON }}
# packageName: app.rosy_crow
# releaseFiles: app.rosy_crow-Signed.aab
# releaseName: ${{ needs.read_version.outputs.version }}
# track: production
# status: completed
deploy_fdroid:
runs-on: ubuntu-latest
name: Deploy to F-Droid
Expand Down

0 comments on commit f90005a

Please sign in to comment.