Skip to content

Commit

Permalink
ci: add prerelease workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
thelindat committed Aug 3, 2024
1 parent 9b43100 commit 3ae9b9e
Showing 1 changed file with 74 additions and 0 deletions.
74 changes: 74 additions & 0 deletions .github/workflows/prerelease.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
name: Pre-release

on:
push:
tags:
- 'v*.*.*'

jobs:
create-release:
name: Build and Create Tagged release
runs-on: ubuntu-latest

steps:
- name: Install archive tools
run: sudo apt install zip

- name: Checkout source code
uses: actions/checkout@v2
with:
fetch-depth: 0
ref: ${{ github.event.repository.default_branch }}

- name: Install pnpm
uses: pnpm/[email protected]
with:
version: 9

- name: Get variables
id: get_vars
run: |
echo '::set-output name=SHORT_SHA::$(git rev-parse --short HEAD)'
echo '::set-output name=DATE::$(date +'%D')'
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'pnpm'
cache-dependency-path: 'pnpm-lock.yaml'

- name: Install dependencies
run: pnpm i --frozen-lockfile

- name: Run build
run: pnpm build

- name: Bundle files
run: |
zip -r ${{ github.event.repository.name }}.zip . -x ".*" "node_modules" "scripts" "src" "tsconfig.json" "pnpm-lock.yaml" "package.json"
- name: Bump package version
run: |
git config --global user.name "GitHub Actions"
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
pnpm version ${{ github.ref_name }} --git-tag-version false
- name: Update repository
run: |
git add .
git commit -am '${{ github.ref_name }}'
git push
- name: Create Release
uses: 'marvinpinto/[email protected]'
id: auto_release
with:
repo_token: '${{ secrets.GITHUB_TOKEN }}'
title: '${{ env.RELEASE_VERSION }}'
prerelease: true
files: ${{ github.event.repository.name }}.zip

env:
CI: false
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 3ae9b9e

Please sign in to comment.