Skip to content

Commit

Permalink
master to main
Browse files Browse the repository at this point in the history
  • Loading branch information
kokoye2007 committed Mar 22, 2024
1 parent f7362b2 commit 1ae24b3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
run: mv dist/* .

- name: Bash
if: github.ref == 'refs/heads/master'
if: github.ref == 'refs/heads/main'
run: |
ls -al
git config --global user.email "d.negrier@thecodingmachine.com"
Expand All @@ -43,12 +43,12 @@ jobs:
- name: Deploy
uses: JamesIves/github-pages-deploy-action@releases/v3
if: github.ref == 'refs/heads/master'
if: github.ref == 'refs/heads/main'
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages # The branch the action should deploy to.
FOLDER: . # The folder the action should deploy.
BASE_BRANCH: master
BASE_BRANCH: main

- name: Bash2
run: |
Expand Down

0 comments on commit 1ae24b3

Please sign in to comment.