Skip to content

Print if localhost accessible #5

Print if localhost accessible

Print if localhost accessible #5

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
- name: Build
run: go build -v -o wiimmfi-room-watcher.exe
- name: Checkout static files
uses: actions/checkout@v3
with:
repository: expiteRz/wiimmfi-room-watcher.static
path: static
- name: Remove unneeded /static/.git
run: rm -r static/.git
shell: cmd
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: wiimmfi-room-watcher
path: |
wiimmfi-room-watcher.exe
static/