gitlab-ci examples
wangbo4020 opened this issue · 1 comments
wangbo4020 commented
请教一下,使用 gitlab-ci 应该怎么配置 deploy 来发布到firim
有个例子将非常感谢
image: flutter-android:latest
before_script:
- chmod +x ./gradlew
assemble:
stage: build
tags:
- android
only:
- tags
script:
- ./gradlew assembleDebug
artifacts:
name: "$CI_PROJECT_NAME_$CI_COMMIT_TAG"
paths:
- app/build/outputs/*.apk
deploy:
stage: deploy
image:
name: firhq/fir-cli
entrypoint:
- fir publish app/build/outputs -T "api_token"
script:
...
jicheng1014 commented
额 这个我得涉猎一下 😝