mirror of https://github.com/tasks/tasks
Add deploy github action
parent
8135a9d542
commit
2d59bb365d
@ -0,0 +1,25 @@
|
|||||||
|
name: Deploy
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
check:
|
||||||
|
uses: ./.github/workflows/bundle.yml
|
||||||
|
bundle:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
needs: [ bundle ]
|
||||||
|
steps:
|
||||||
|
- name: Decode secrets
|
||||||
|
run: |
|
||||||
|
echo ${{ secrets.FASTLANE }} > "${RUNNER_TEMP}"/fastlane.json
|
||||||
|
ln -s "${RUNNER_TEMP}"/fastlane.json .
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- uses: ruby/setup-ruby@v1
|
||||||
|
with:
|
||||||
|
bundler-cache: true
|
||||||
|
- name: Deploy
|
||||||
|
run: bundle exec fastlane deploy
|
||||||
@ -1,2 +1,2 @@
|
|||||||
json_key_file("~/.android/api-4793482975234229192-818053-e423e10743e2.json")
|
json_key_file("fastlane.json")
|
||||||
package_name("org.tasks")
|
package_name("org.tasks")
|
||||||
|
|||||||
Loading…
Reference in New Issue