Skip to content

Commit

Permalink
Add release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mirhmousavi committed Mar 18, 2024
1 parent cb735c7 commit a2db4e5
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# This workflow is triggered on pushes to the master branch and creates a release
# with the "latest" tag. it also removes any previous associated releases.
---
name: "release"

on:
push:
branches:
- "master"

jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: latest
- name: Build
run: |
npm install
gulp generic
- name: Create Release
run: tar czf build.tar.gz -C build .
- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "latest"
files: "build.tar.gz"

0 comments on commit a2db4e5

Please sign in to comment.