mirror of https://github.com/tasks/tasks
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
620 B
YAML
33 lines
620 B
YAML
name: Deploy
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
env:
|
|
FASTLANE: ${{ secrets.FASTLANE }}
|
|
|
|
jobs:
|
|
bundle:
|
|
uses: ./.github/workflows/bundle.yml
|
|
secrets: inherit
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
needs: [ bundle ]
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
- name: Fastlane key
|
|
run: |
|
|
echo "$FASTLANE" > ./fastlane.json
|
|
- uses: ruby/setup-ruby@v1
|
|
with:
|
|
bundler-cache: true
|
|
- uses: actions/download-artifact@v7
|
|
with:
|
|
name: release
|
|
path: .
|
|
- name: Deploy
|
|
run: bundle exec fastlane deploy
|