Skip to content

Commit

Permalink
Add workflow for main
Browse files Browse the repository at this point in the history
  • Loading branch information
marten committed Jun 10, 2024
1 parent 3d9b33e commit 91259e4
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: Build site

on: push

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Install Ruby and gems
uses: ruby/setup-ruby@55283cc23133118229fd3f97f9336ee23a179fcf # v1.146.0
with:
bundler-cache: true
- run: bundle exec nanoc compile
- run: bundle exec nanoc check ilinks
- name: Upload Build Artifact
uses: actions/upload-artifact@v4
with:
name: build
path: output
retention-days: 1

# deploy:
# runs-on: ubuntu-latest
# needs: build
# if: success() && (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/main')

# steps:
# - name: Download Build Artifact
# uses: actions/download-artifact@v4
# with:
# name: build
# path: output

# - name: Rsync Deployer
# uses: imajeetyadav/[email protected]
# with:
# HOST: ${{ secrets.SERVER_IP }}
# USERNAME: ${{ secrets.SSH_USER }}
# KEY: ${{ secrets.SSH_PRIVATE_KEY }}
# SOURCE_PATH: "./build/"
# TARGET_PATH: "~/roqua_frontpage/html/"
# PORT: 22
# RSYNC_PARAMETERS: ""
# DELETE_OPTION: "true"
# EXCLUDE_LIST: ".git, .github"

0 comments on commit 91259e4

Please sign in to comment.