Skip to content

Commit

Permalink
Add Build Artifacts Workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
widoz committed Mar 17, 2024
1 parent da40b22 commit 30e1ad8
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/builld-artifacts.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Build Artifacts

on:
push:
tags:
- '*'

jobs:
build:
runs-on: ubuntu-latest
if: ${{ !contains(github.event.head_commit.message, '--skip-assets-artifacts') }}
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Setup Node
uses: actions/setup-node@v2
with:
cache: 'yarn'
node-version: '20'

- name: Install Dependencies
run: yarn install

- name: Build Artifacts
uses: widoz/github-artifacts-action@v1
env:
GIT_USER: ${{ secrets.GIT_USER }}
GIT_EMAIL: ${{ secrets.GIT_EMAIL }}
HUSKY: 0

0 comments on commit 30e1ad8

Please sign in to comment.