Skip to content

Commit

Permalink
Add workflow for 2024
Browse files Browse the repository at this point in the history
  • Loading branch information
splattater committed Jun 12, 2024
1 parent bf78c71 commit 6ebbb85
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/past-2024.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Build Jekyll Page and publish it to GitHub Pages
name: Build Jekyll Page (2024)

on:
push:
branches: [ past/2024 ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: arduino/setup-task@v2
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Check out Site Repository 📄
uses: actions/checkout@v4
- name: Check out iCal Repository 📅
uses: actions/checkout@v4
with:
repository: 'AKSW/ical.dataweek.de'
ref: 'page-live'
path: '.ical'
- name: Run CI Tasks ⚙️
run: task build
- name: Deploy 🚀
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./_site
publish_branch: page-2024 # default: gh-pages

0 comments on commit 6ebbb85

Please sign in to comment.