You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
356 B
19 lines
356 B
pipeline:
|
|
prep-release:
|
|
image: alpine:latest
|
|
commands:
|
|
- apk update
|
|
- apk add zip
|
|
- zip -r StatTrak.zip {dlc,mods,bin}/
|
|
when:
|
|
event: tag
|
|
|
|
release-stable:
|
|
image: plugins/github-release
|
|
settings:
|
|
api_key:
|
|
from_secret: github_token
|
|
files: "*.zip"
|
|
draft: true
|
|
when:
|
|
event: tag
|