Skip to content

Commit

Permalink
ci: added branch deployment to netlify
Browse files Browse the repository at this point in the history
  • Loading branch information
SachsenspieltCoding committed Oct 10, 2023
1 parent 41fa5af commit 317cc29
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/branch-deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Deploy Branch to Netlify

on:
push:

jobs:
build-web:
name: Build Web
runs-on: ubuntu-latest
steps:
- name: Code Checkout
uses: actions/checkout@v3

- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
channel: 'stable'

- name: Get Packages
run: flutter pub get

- name: Build Web
run: flutter build web

- name: Deploy to Netlify
uses: nwtgck/actions-netlify@v2.0
with:
publish-dir: build/web
production-branch: ${{ github.ref }}
deploy-message: 'GH-ACTIONS: Deploy of branch ${{ github.ref }}'
enable-commit-status: true
github-token: ${{ secrets.GITHUB_TOKEN }}
production-deploy: false
enable-pull-request-comment: false
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}

1 comment on commit 317cc29

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.