Created
November 19, 2020 07:39
-
-
Save evolve2k/f072dc124c1a7b93cf13a8e26e81ca56 to your computer and use it in GitHub Desktop.
This file contains hidden or 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: publish | |
on: [workflow_dispatch, repository_dispatch] | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: | | |
date > published.txt | |
git config user.name github-actions | |
git config user.email [email protected] | |
git add . | |
git commit -m "Published Changes" | |
git push |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment