Browse Source

Merge branch 'master' of gitlab.privateger.me:privateger/yt-dlp-archive-viewer

master
PrivateGER 3 years ago
parent
commit
14074fa1e0
Signed by: PrivateGER GPG Key ID: CAE625C962F94C67
  1. 18
      .gitlab-ci.yml

18
.gitlab-ci.yml

@ -0,0 +1,18 @@
# To contribute improvements to CI/CD templates, please follow the Development guide at:
# https://docs.gitlab.com/ee/development/cicd/templates.html
# This specific template is located at:
# https://gitlab.com/gitlab-org/gitlab/-/blob/master/lib/gitlab/ci/templates/Go.gitlab-ci.yml
image: golang:latest
stages:
- build
- deploy
compile:
stage: build
script:
- go build -race -ldflags "-extldflags '-static'" -o $CI_PROJECT_DIR/ytdlp-archive-viewer .
artifacts:
paths:
- ytdlp-archive-viewer
Loading…
Cancel
Save