Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Metabase
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Engineering Digital Service
Metabase
Commits
ba5b9820
Unverified
Commit
ba5b9820
authored
5 months ago
by
Ryan Laurie
Committed by
GitHub
5 months ago
Browse files
Options
Downloads
Patches
Plain Diff
Automatically tag automatic releases as `nightly` (#48101)
* auto tag nightly releases * update dependencies
parent
c28f288d
Loading
Loading
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.github/workflows/release-tag.yml
+24
-0
24 additions, 0 deletions
.github/workflows/release-tag.yml
.github/workflows/release.yml
+12
-1
12 additions, 1 deletion
.github/workflows/release.yml
with
36 additions
and
1 deletion
.github/workflows/release-tag.yml
+
24
−
0
View file @
ba5b9820
...
...
@@ -28,6 +28,30 @@ on:
description
:
Apply to OSS
type
:
boolean
default
:
true
workflow_call
:
inputs
:
version
:
type
:
string
required
:
true
tag_name
:
type
:
string
# options:
# - nightly
# - beta
# - latest
required
:
true
tag_rollout
:
description
:
Rollout % (0-100)
type
:
number
default
:
100
tag_ee
:
description
:
Apply to EE
type
:
boolean
default
:
true
tag_oss
:
description
:
Apply to OSS
type
:
boolean
default
:
true
jobs
:
check-version
:
...
...
This diff is collapsed.
Click to expand it.
.github/workflows/release.yml
+
12
−
1
View file @
ba5b9820
...
...
@@ -687,6 +687,17 @@ jobs:
--distribution-id ${{ vars.AWS_CLOUDFRONT_STATIC_ID }} \
--paths "/version-info.json" "/version-info-ee.json"
tag-nightly
:
if
:
${{ inputs.auto }}
needs
:
[
push-tags
,
verify-docker-pull
,
verify-s3-download
]
uses
:
./.github/workflows/release-tag.yml
with
:
version
:
${{ inputs.version }}
tag_name
:
nightly
tag_rollout
:
100
tag_ee
:
true
tag_oss
:
true
publish-complete-message
:
if
:
${{ !inputs.auto }}
runs-on
:
ubuntu-22.04
...
...
@@ -719,7 +730,7 @@ jobs:
auto-publish-complete-message
:
if
:
${{ inputs.auto }}
runs-on
:
ubuntu-22.04
needs
:
[
push-tags
,
verify-docker-pull
,
verify-s3-download
]
needs
:
tag-nightly
timeout-minutes
:
5
steps
:
-
uses
:
actions/checkout@v4
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment