Created
July 12, 2021 19:34
-
-
Save marcos-bah/0d9383946cb7818adc4894ad7eb20e42 to your computer and use it in GitHub Desktop.
Action para gerar página web - flutter
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is a basic workflow to help you get started with Actions | |
# https://github.com/marcos-bah | |
name: CI GitHub Pages - Flutter | |
# Controls when the workflow will run | |
on: | |
# Triggers the workflow on push or pull request events but only for the main branch | |
push: | |
branches: [ main, development ] | |
pull_request: | |
branches: [ main ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
# This workflow contains a single job called "build" | |
build: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: subosito/flutter-action@v1 | |
- uses: erickzanardo/flutter-gh-pages@v3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment