0
0
mirror of https://github.com/yude-jp/yude.jp synced 2025-10-14 04:08:36 +09:00

Initial commit

This commit is contained in:
yude
2021-02-05 16:22:07 +09:00
commit 6ceed7450b
41 changed files with 2873 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
name: Aerobatic
on:
push:
branches:
- master
jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@master
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '12'
- name: Install dependencies
run: npm install
- name: Deploy to Aerobatic
run: npm run deploy
env:
AEROBATIC_API_KEY: ${{ secrets.AEROBATIC_API_KEY }}