Create deploy.yml #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: deploy | ||
on: | ||
push: | ||
branches: | ||
# Pushing to the `main` branch | ||
# will trigger our workflow | ||
- main | ||
paths-ignore: | ||
- 'bin/**' | ||
- 'README.m | ||