Skip to content

βž• [GitHub Workflows] Add release workflow #5

βž• [GitHub Workflows] Add release workflow

βž• [GitHub Workflows] Add release workflow #5

Workflow file for this run

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
id: draft_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: ✨v${{ github.ref }}
draft: false
- name: πŸ›  Build Release (Linux)
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.draft_release.outputs.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