Skip to content

Commit

Permalink
Draft release workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
tmpfs committed Feb 12, 2024
1 parent ed78c6e commit cb623dd
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Release Artifacts

on:
push:
tags:
- "v*.*.*"
#env:
#BUCKET: ${{ vars.RELEASE_BUCKET }}
#RELEASES_CLOUDFRONT_ID: ${{ vars.RELEASES_CLOUDFRONT_ID }}

jobs:
release-artifacts:
#if: ${{ false }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: yarn install
- name: Check types
run: yarn types
- name: Build package
run: npm pack
#- name: Release
#uses: softprops/action-gh-release@v1
#with:
#generate_release_notes: true
#files: |
#target/artifacts/*
#LICENSE
#COPYRIGHT

0 comments on commit cb623dd

Please sign in to comment.