Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
syspro86 committed Dec 26, 2021
2 parents be6b712 + d964ce5 commit 91464cc
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 1 deletion.
29 changes: 29 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Go

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:

build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2

- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.17

- name: Build
run: go build -tags=windows -ldflags -H=windowsgui -o loa.exe ./cmd/loa/

- uses: "marvinpinto/action-automatic-releases@latest"
with:
automatic_release_tag: latest
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: false
files: loa.exe
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
# lostark-auction-finder
# lostark-auction-finder

## 실행전

- 크롬이 설치되어 있어야 합니다.
- https://chromedriver.chromium.org/downloads 에서 본인 크롬과 같은 버전의 chromedriver.exe 파일을 받아 같은 폴더에 두어야 합니다.

0 comments on commit 91464cc

Please sign in to comment.