Skip to content

Commit

Permalink
CI
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexDenisov committed Dec 7, 2024
1 parent c170c73 commit 41dfab6
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
18 changes: 17 additions & 1 deletion .github/workflows/ci-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,22 @@ jobs:
ls ./build.dir/
./end2end-tests/run_end2end_tests.sh 12
- name: Publish package
shell: bash
run: |
pwd
ls
ls build.dir
- name: Publish package
if: env.CLOUDSMITH_API_KEY != null
shell: bash
run: |
UBUNTU_CODENAME=$(. /etc/os-release; echo "${UBUNTU_CODENAME/*, /}")
cloudsmith push deb \
mull-project/mull-${{ steps.metadata.outputs.channel }}/ubuntu/${UBUNTU_CODENAME} \
build.dir/*.deb
# jobs:
# ubuntu:
Expand Down Expand Up @@ -68,7 +84,7 @@ jobs:
# pip3 install ansible

# - name: Add git ppa
# if: matrix.UBUNTU_VERSION != '24.04'
# i f: matrix.UBUNTU_VERSION != '24.04'
# run: |
# apt-get update && apt-get install --no-install-recommends -y gpg-agent software-properties-common
# add-apt-repository ppa:git-core/ppa
Expand Down
2 changes: 1 addition & 1 deletion actions/detect-package-metadata/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ runs:
case $GITHUB_EVENT_NAME in
"pull_request")
echo "suffix=-pr$(grep -Eo "\"number\": [0-9]+" $GITHUB_EVENT_PATH | awk ' { print $2; exit } ')" >> $GITHUB_OUTPUT
echo "channel=nightly" >> $GITHUB_OUTPUT
echo "channel=testing" >> $GITHUB_OUTPUT
;;
"push")
case $GITHUB_REF in
Expand Down

0 comments on commit 41dfab6

Please sign in to comment.