Skip to content

Commit

Permalink
ci: add pre-release.yml
Browse files Browse the repository at this point in the history
Generate bleeding-edge pre-releases with every commit on src/ directory.
  • Loading branch information
4ndrs committed Nov 1, 2022
1 parent 05dfc08 commit 3dd2852
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Pre-release

on:
push:
branches:
- main
paths:
- src/**

jobs:
build-and-release:
name: Build & Release
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Install dependencies
run: npm ci

- name: Run ESLint on src directory
run: npx eslint src

- name: Build main.js
run: npm run build

- name: Release
- uses: marvinpinto/action-automatic-releases@latest
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
prerelease: true
automatic_release_tag: bleeding-edge
files: main.js

0 comments on commit 3dd2852

Please sign in to comment.