Update GitHub action

This commit is contained in:
Hillel Coren 2020-03-01 22:20:10 +02:00
parent 51683ba97f
commit f64d9ab178
1 changed files with 3 additions and 2 deletions

View File

@ -7,7 +7,8 @@ jobs:
build: build:
name: Build Flutter Web name: Build Flutter Web
env: env:
my_secret: ${{secrets.commit_secret}} commit_secret: ${{secrets.commit_secret}}
commit_email: ${{secrets.commit_email}}
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v1
@ -22,7 +23,7 @@ jobs:
cat lib/.env.dart cat lib/.env.dart
- run: flutter build web --release - run: flutter build web --release
- run: | - run: |
git config --global user.email hillelcoren@gmail.com git config --global user.email ${{secrets.commit_secret}}
git config --global user.name hillelcoren git config --global user.name hillelcoren
git status git status