4
0
mirror of https://github.com/AltarikMC/Launcher synced 2024-11-22 06:19:50 +01:00
Launcher/.github/workflows/publish.yml

32 lines
914 B
YAML
Raw Normal View History

2023-08-29 16:26:28 +02:00
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: Publish package
on:
push:
branches: [ "master" ]
jobs:
2023-08-29 17:13:19 +02:00
publish:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
2023-08-29 16:26:28 +02:00
steps:
- uses: actions/checkout@v4
2024-06-29 10:19:46 +02:00
- name: Enable Corepack before setting up Node
run: corepack enable
- name: Use Node.js 20.x
uses: actions/setup-node@v4
2023-08-29 16:26:28 +02:00
with:
2024-06-29 10:14:31 +02:00
node-version: 20
2023-08-29 16:26:28 +02:00
cache: 'yarn'
2023-08-29 17:17:49 +02:00
architecture: 'x64'
2023-08-29 16:26:28 +02:00
- name: Install dependencies
2024-06-29 10:39:09 +02:00
run: yarn install
2023-08-29 16:26:28 +02:00
- name: Build and publish package
run: yarn run publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}