Skip to content

Instantly share code, notes, and snippets.

@devkinetic
Created December 1, 2020 16:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save devkinetic/bf354629e7688a69ae8c7d7092289318 to your computer and use it in GitHub Desktop.
Save devkinetic/bf354629e7688a69ae8c7d7092289318 to your computer and use it in GitHub Desktop.
Publish tagged release to Gitlab CI for Composer
stages:
- deploy
deploy:
only:
- tags
stage: deploy
script:
- 'curl --header "Job-Token: $CI_JOB_TOKEN" --data tag=$CI_COMMIT_TAG "https://gitlab.com/api/v4/projects/$CI_PROJECT_ID/packages/composer"'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment