Skip to content

Commit

Permalink
Merge pull request #10 from codeforberlin/github_action
Browse files Browse the repository at this point in the history
Add GitHub action
  • Loading branch information
jochenklar authored Dec 15, 2021
2 parents 720e556 + 4c36757 commit 4a865c4
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: CI

on: push

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
persist-credentials: false

- name: Fetch
run: |
bin/fetch.sh
- name: Deploy
uses: JamesIves/[email protected]
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: public

0 comments on commit 4a865c4

Please sign in to comment.