User Tools

Site Tools


gitlab-ci-release

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revisionBoth sides next revision
gitlab-ci-release [2020/08/30 23:46] admingitlab-ci-release [2020/08/31 00:12] admin
Line 1: Line 1:
 ====== Gitlab CI create release ====== ====== Gitlab CI create release ======
 +
 +Example to create a PHP archive (phar) and link the generated artifact to the relase if a `Release Note` is set.
 +
 +  * ''create_version'' Build and attach files as artifacts.
 +    * ''echo 'JOB_ARTIFACT_ID='$CI_JOB_ID > build.env'' - Will save the jobs id to env var
 +  * ''release'' Attach file to relase if tag is a relase
 +    * ''export $(xargs <build.env)'' - Exports env vars set in ''build.env'' file
  
 <code yaml .gitlab-ci.yml> <code yaml .gitlab-ci.yml>
Line 24: Line 31:
     paths:     paths:
       - $PHAR_FILE_NAME       - $PHAR_FILE_NAME
 +      # Add .env file to artifacts
       - build.env       - build.env
     expire_in: 1000 year     expire_in: 1000 year
gitlab-ci-release.txt · Last modified: 2020/08/31 00:51 by admin