12345678910111213141516171819202122232425262728293031 |
- name: CI
- on:
- push:
- branches: [ master , main]
- pull_request:
- branches: [ master , main]
- jobs:
- build:
- strategy:
- matrix:
- os: [ macos-latest]
- runs-on: ${{matrix.os}}
- steps:
- - uses: actions/checkout@v4
- - name: Build sign ile
- run: |
- base64 build_certificate.p12 | pbcopy
-
- # output some file:
- - name: artifact
- uses: actions/upload-artifact@v2
- with:
- name: ${{runner.OS}}-artifact
- path: |
- # build/app/outputs/flutter-apk/**/*.apk
- build/app/outputs/flutter-apk/app.apk
- build/ios/**/*.ipa
- build/web/web-app.zip
- build/windows/runner/Release/
- # build/
|