Skip to content

Remove interactive flag from docker run in build script #2

Remove interactive flag from docker run in build script

Remove interactive flag from docker run in build script #2

Workflow file for this run

on:
push:
tags:
- "*"
workflow_dispatch:
name: Build and publish executable
jobs:
build_publish:
name: Build and publish executable
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build bundle
run: cd dist && sudo ./build.sh --dist --bundle
- name: Publish bundle
uses: softprops/action-gh-release@v1
with:
name: Automated build of ${{ github.ref }}
files: build/*
draft: false
prerelease: true
body: This is an automated build of commit ${{ github.ref }}.