Skip to content

Commit

Permalink
start switching deploy workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
KonradHoeffner committed Oct 1, 2024
1 parent bd3acd0 commit ce68458
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
- master

jobs:
deploy:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -17,7 +17,12 @@ jobs:
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile') }}
restore-keys: |
${{ runner.os }}-gems-
- uses: helaili/jekyll-action@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
target_branch: 'static'
- name: Setup and Build
run: |
bundle install
jekyll build
deploy:
needs: build
- name: Deploy to GitHub Pages
id: deployment
uses: actions/upload-pages-artifact@v3

0 comments on commit ce68458

Please sign in to comment.