Skip to content

Commit

Permalink
βž• [GitHub Workflows] Add release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
sech1p committed Jun 8, 2024
1 parent b1529de commit 2f3e412
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
on:
push:
tags:
- '*'

env:
node: true
es6: true

jobs:
release_job:
runs-on: ubuntu-latest
name: πŸ’Ύ Releasing
steps:
- name: βœ” Checkout
uses: actions/checkout@v4

- name: πŸ’» Download node and release package
uses: actions/setup-node@v4
with:
node-version: 20
- run: npm install
- run: npm install --save-dev
- run: npm run build
- run: npm install -g pkg-fetch
- run: pkg-fetch dist/index.js

- name: πŸ›  Draft Release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: ✨v${{ github.ref }}
draft: true

- id: step_upload_url
run: echo "::set-output name=upload_url::${{ steps.create_release.outputs.upload_url }}"

- name: πŸ›  Build Release (Linux)
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ needs.release_job.output.step_upload_url }}
asset_path: ../../../.pkg-cache/v3.5/fetched-v19.8.1-linux-x64
asset_name: blahaj-linux-x64
asset_content_type: application/x-elf

0 comments on commit 2f3e412

Please sign in to comment.