Skip to content

Update Makefile and build CI file #5

Update Makefile and build CI file

Update Makefile and build CI file #5

Workflow file for this run

name: Build and Release
on:
push:
tags:
- v**
jobs:
build_and_release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install packages
run: sudo apt-get install build-essential mingw-w64 clang
- name: Set Tag Name
id: set_tag
run: echo "::set-output name=tag_name::${GITHUB_REF#refs/tags/}"
- name: Build for Windows
run: make win32
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ steps.set_tag.outputs.tag_name }}
release_name: ${{ steps.set_tag.outputs.tag_name }}
draft: false
prerelease: false
- name: Upload Release Assets
id: upload-release-assets
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./build/win32/qrean.zip
asset_name: qrean-${{ steps.set_tag.outputs.tag_name }}.zip

Check failure on line 40 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build.yml

Invalid workflow file

You have an error in your yaml syntax on line 40
- name: Publish package to NPM
- uses: actions/setup-node@v3
with:
node-version: 20
registry-url: https://registry.npmjs.org/
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}