Skip to content

Instantly share code, notes, and snippets.

@marcos-bah
Created July 12, 2021 19:34
Show Gist options
  • Save marcos-bah/0d9383946cb7818adc4894ad7eb20e42 to your computer and use it in GitHub Desktop.
Save marcos-bah/0d9383946cb7818adc4894ad7eb20e42 to your computer and use it in GitHub Desktop.
Action para gerar página web - flutter
# 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