Skip to content

Commit

Permalink
Merge pull request #12 from cdnjs/sven/actions
Browse files Browse the repository at this point in the history
add GitHub actions
  • Loading branch information
xtuc authored May 4, 2020
2 parents d24df33 + 774b94b commit fd3e1ab
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Publish tools

on:
push:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: make
run: make all

- uses: actions/upload-artifact@v1
with:
name: algolia
path: ./bin/algolia

- uses: actions/upload-artifact@v1
with:
name: autoupdate
path: ./bin/autoupdate

- uses: actions/upload-artifact@v1
with:
name: checker
path: ./bin/checker

- uses: actions/upload-artifact@v1
with:
name: packages
path: ./bin/packages

0 comments on commit fd3e1ab

Please sign in to comment.