Skip to content

Commit

Permalink
Replace Drone with GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
trotttrotttrott committed Nov 11, 2023
1 parent 11e47ad commit 8d62646
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 39 deletions.
39 changes: 0 additions & 39 deletions .drone.yml

This file was deleted.

28 changes: 28 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: build

on:
push:
branches:
- main

permissions:
contents: write

jobs:

build:
runs-on: ubuntu-latest
env:
PUBLIC_URL: https://trotttrotttrott.com/es9-mixer/build
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 21
- run: yarn install
- run: yarn build
- run: git add -f build
- run: git config --global user.email '[email protected]'
- run: git config --global user.name 'bottbottbott'
- run: git commit -m '[GH] es9-mixer build'
- run: git push -f [email protected]:trotttrotttrott/es9-mixer HEAD:build

0 comments on commit 8d62646

Please sign in to comment.