mirror of
https://github.com/EnderIce2/rpc-bridge.git
synced 2025-05-25 22:14:38 +00:00
36 lines
677 B
YAML
36 lines
677 B
YAML
name: Build Project
|
|
|
|
on:
|
|
push:
|
|
branches: [ "master" ]
|
|
paths-ignore:
|
|
- 'ISSUE_TEMPLATE/**'
|
|
- 'workflows/**'
|
|
- '.vsocde/**'
|
|
- 'docs/**'
|
|
pull_request:
|
|
branches: [ "master" ]
|
|
paths-ignore:
|
|
- 'ISSUE_TEMPLATE/**'
|
|
- 'workflows/**'
|
|
- '.vsocde/**'
|
|
- 'docs/**'
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: dependencies
|
|
run: sudo apt update && sudo apt -y install gcc-mingw-w64 make
|
|
- name: make
|
|
run: make
|
|
- name: artifact
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: bridge
|
|
path: build
|