Skip to content

Change runs-on to linux-latest in build.yaml #23

Change runs-on to linux-latest in build.yaml

Change runs-on to linux-latest in build.yaml #23

Workflow file for this run

name: Build and Release
on:
push:
branches:
- build
jobs:
build-and-release:
runs-on: linux-latest
steps:
- uses: actions/checkout@v2
- name: Generate Tag
id: tagger
uses: anothrNick/github-tag-action@1.26.0
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: '18'
- name: Install dependencies
run: npm install
- name: Build for MacOS
run: npm run build:macos
- name: Build for Windows
run: npm run build:win
- name: Build for Linux
run: npm run build:linux
- name: Create Release
id: create_release
uses: softprops/action-gh-release@v1
with:
files: |
./dist/mockingbird-proxy-portable-*.exe
./dist/mockingbird-proxy-*.dmg
./dist/mockingbird-proxy-*.AppImage
token: ${{ secrets.GH_TOKEN }}