Skip to content

Commit

Permalink
Add deploy workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ibokuri committed Mar 2, 2024
1 parent 58f589c commit 356ace1
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Deploy

on:
push:
branches:
- main

jobs:
build:
runs-on: macos-latest-xlarge

concurrency: ci-${{ github.ref }}

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

- name: Build
run: tools/build
env:
VERBOSE: 1

- name: Deploy
uses: s0/git-publish-subdir-action@develop
env:
REPO: self
BRANCH: docs
FOLDER: public
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 356ace1

Please sign in to comment.