Skip to content
Snippets Groups Projects
Verified Commit 551d673b authored by Thomas Lambert's avatar Thomas Lambert :helicopter:
Browse files

ci: fix issue

parent 07d1a5b8
No related branches found
No related tags found
No related merge requests found
......@@ -3,15 +3,32 @@
# TODO: Lint check for arduino
# TODO: Arduino-build
# .setup_env: &setup_env
# - echo "Setup the environment"
stages:
- release
# build:
# stage: build
# before_script:
# - *setup_env
# script:
# - echo "Building Arduino code"
#
# lint:
# stage: test
# before_script:
# - *setup_env
# script:
# - echo "Style verification"
# https://docs.gitlab.com/ee/user/project/releases/release_cicd_examples.html
release_job:
stage: release
image: registry.gitlab.com/gitlab-org/release-cli:latest
rules:
- if: $CI_COMMIT_TAG # Run this job when a tag is created
- if: '$CI_COMMIT_REF_NAME == "main" && $CI_COMMIT_TAG'
script:
- echo "running release_job"
release:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment