tileos-settings-sway/.gitlab-ci.yml
2023-10-27 20:28:32 +00:00

28 lines
577 B
YAML

# Is performed before the scripts in the stages step
before_script:
- source /etc/profile
# Defines stages which are to be executed
stages:
- build
# Stage "build"
run-build:
stage: build
script:
- pwd
- mkdir -p ./builds/artifact
- sudo apt update
- sudo apt install -y build-essential devscripts dh-make
- dpkg-buildpackage -us -uc
- mv ../* ./builds/artifact
# This stage is only executed for new tags
only:
- tags
# The files which are to be made available in GitLab
artifacts:
paths:
- ./builds/artifact