Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Matrix
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Operate
Environments
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
TeDomum
Matrix
Commits
ae81ec42
Commit
ae81ec42
authored
3 years ago
by
Richard van der Hoff
Browse files
Options
Downloads
Patches
Plain Diff
Build the python release artifacts in GHA too
parent
5f2848f3
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.github/workflows/release-artifacts.yml
+23
-3
23 additions, 3 deletions
.github/workflows/release-artifacts.yml
with
23 additions
and
3 deletions
.github/workflows/
deb
s.yml
→
.github/workflows/
release-artifact
s.yml
+
23
−
3
View file @
ae81ec42
# GitHub actions workflow which builds the
debian package
s.
# GitHub actions workflow which builds the
release artifact
s.
name
:
Deb
s
name
:
Build release artifact
s
on
:
push
:
# we build on develop and release branches to (hopefully) get early warning
# of things breaking
branches
:
[
"
develop"
,
"
release-*"
]
# we also rebuild on tags, so that we can be sure of picking the artifacts
# from the right tag.
tags
:
[
"
v*"
]
permissions
:
contents
:
read
...
...
@@ -40,5 +46,19 @@ jobs:
-
run
:
./src/scripts-dev/build_debian_packages "${{ matrix.distro }}"
-
uses
:
actions/upload-artifact@v2
with
:
name
:
package
s
name
:
deb
s
path
:
debs/*
build-sdist
:
name
:
"
Build
pypi
distribution
files"
runs-on
:
ubuntu-latest
steps
:
-
uses
:
actions/checkout@v2
-
uses
:
actions/setup-python@v2
-
run
:
pip install wheel
-
run
:
|
python setup.py sdist bdist_wheel
-
uses
:
actions/upload-artifact@v2
with
:
name
:
python-dist
path
:
dist/*
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