Skip to content

Instantly share code, notes, and snippets.

@evolve2k
Created November 19, 2020 07:39
Show Gist options
  • Save evolve2k/f072dc124c1a7b93cf13a8e26e81ca56 to your computer and use it in GitHub Desktop.
Save evolve2k/f072dc124c1a7b93cf13a8e26e81ca56 to your computer and use it in GitHub Desktop.
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 github-actions@github.com
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