diff options
author | Patrick Spek <p.spek@tyil.nl> | 2019-09-24 16:22:25 +0200 |
---|---|---|
committer | Patrick Spek <p.spek@tyil.nl> | 2019-09-24 16:22:25 +0200 |
commit | 8e0ebc0e191ba85a2b6f21d39256e51af3a9dcca (patch) | |
tree | 7b83b86a3953ee8051ccca77160f9093fd108592 | |
parent | 66a1853c3cc75635fc1a53f412535c65f8381750 (diff) | |
download | IRC::Client::Plugin::NickServ-8e0ebc0e191ba85a2b6f21d39256e51af3a9dcca.tar.gz IRC::Client::Plugin::NickServ-8e0ebc0e191ba85a2b6f21d39256e51af3a9dcca.tar.bz2 |
Add GitLab CI configuration
-rw-r--r-- | .gitlab-ci.yml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..c2be4a4 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,20 @@ +stages: + - release + +# +# Release targets +# + +Distribution: + stage: release + only: + refs: + - tags + - master + image: rakudo-star + script: + - echo "NOOP" + artifacts: + name: App-CPAN-${CI_COMMIT_TAG} + paths: + - . |