| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- name: Package builds (stable)
- on:
- workflow_dispatch:
- # release:
- # types: [published]
- permissions:
- contents: write
- actions: write
- jobs:
- package_builds:
- #runs-on: alrest-techarohq
- runs-on: ubuntu-24.04
- steps:
- - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- with:
- persist-credentials: false
- fetch-tags: true
- fetch-depth: 0
- - name: build essential
- run: |
- sudo apt-get update
- sudo apt-get install -y build-essential
- - uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
- with:
- node-version: "24.11.0"
- - uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
- with:
- go-version: "1.25.4"
- - name: install node deps
- run: |
- npm ci
- - name: Build Packages
- run: |
- go tool yeet
- - name: Upload released artifacts
- env:
- GITHUB_TOKEN: ${{ github.TOKEN }}
- RELEASE_VERSION: ${{github.event.release.tag_name}}
- shell: bash
- run: |
- RELEASE="${RELEASE_VERSION}"
- cd var
- for file in *; do
- gh release upload $RELEASE $file
- done
|