-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Add gitlab release script (#14)
* Add latest post-release-merge script * Add gitlab release script
- Loading branch information
Showing
2 changed files
with
19 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
variables: | ||
RUBY_VERSION: 3.2.2 | ||
|
||
workflow: | ||
rules: | ||
- if: $CI_COMMIT_TAG | ||
|
||
build-and-release: | ||
stage: build | ||
image: ${CI_DEPENDENCY_PROXY_GROUP_IMAGE_PREFIX}/ruby:$RUBY_VERSION | ||
script: | ||
- bundle install | ||
- pod lib lint --allow-warnings --allow-root | ||
- pod trunk push --allow-root | ||
when: manual | ||
environment: production |