Running Github Actions every time (not only on master)

This commit is contained in:
David Négrier 2021-04-11 23:40:39 +02:00
parent b0d12ed9b0
commit ad50e30598
1 changed files with 3 additions and 3 deletions

View File

@ -1,9 +1,7 @@
name: Optimize map and deploy
on:
push:
branches:
- master
- push
jobs:
@ -34,6 +32,7 @@ jobs:
run: mv dist/* .
- name: Bash
if: github.ref == 'refs/heads/master'
run: |
ls -al
git config --global user.email "d.negrier@thecodingmachine.com"
@ -43,6 +42,7 @@ jobs:
- name: Deploy
uses: JamesIves/github-pages-deploy-action@releases/v3
if: github.ref == 'refs/heads/master'
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages # The branch the action should deploy to.