forked from hitomi-team/discord-ipc-bridge
-
Notifications
You must be signed in to change notification settings - Fork 5
33 lines (26 loc) · 690 Bytes
/
release.yml
File metadata and controls
33 lines (26 loc) · 690 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: Release
on:
push:
branches: master
jobs:
Release:
name: Release
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: "actions/checkout@v2.3.4"
- name: Update package repositories
run: sudo apt-get update
- name: Install mingw
run: sudo apt-get install -y gcc-mingw-w64
- name: Build
run: make bridge.exe
- name: "Release"
uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "latest"
prerelease: false
title: "Latest build"
files: |
bridge.exe