Skip to content

Commit

Permalink
fix githubactions
Browse files Browse the repository at this point in the history
  • Loading branch information
rtancman committed Oct 9, 2023
1 parent 53b802f commit 7605209
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,13 @@ jobs:
ruby-version: '3.1.2'
bundler-cache: true
- name: jekyll build
run: bundle exec jekyll build
run: bundle exec jekyll build
- name: deploy to gh-pages
run: |
cd ./_site
git init
git config user.name hackerspaceblumenau
git config user.email [email protected]
git add . && git commit -m "Deploy github-pages"
git remote add origin https://rtancman:${{ secrets.GH_PAGES_GITHUB_TOKEN }}@github.com/HackerspaceBlumenau/blumenau-dev-day.git
git push origin master -f

0 comments on commit 7605209

Please sign in to comment.