Skip to content

Commit

Permalink
normalize RPM repodata depth L2; normalize DEB distribution, componen…
Browse files Browse the repository at this point in the history
…t, and path
  • Loading branch information
qrkourier committed Oct 10, 2023
1 parent a3f1b68 commit 6b765f5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/publish-linux-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ on:

jobs:
publish-linux-packages:
name: ${{ matrix.package_name }} ${{ matrix.arch.rpm }} ${{ matrix.nfpm_packager }}
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down Expand Up @@ -94,7 +95,7 @@ jobs:
run: >
jf rt upload
./release/${{ matrix.package_name }}*.rpm
/${{ env.ZITI_RPM_TEST_REPO }}/testing/${{ matrix.package_name }}/${{ matrix.arch.rpm }}/
${{ env.ZITI_RPM_TEST_REPO }}/redhat/${{ matrix.arch.rpm }}/
--recursive=false
--flat=true
Expand All @@ -105,7 +106,7 @@ jobs:
run: >
jf rt upload
./release/${{ matrix.package_name }}*.rpm
/${{ env.ZITI_RPM_PROD_REPO }}/release/${{ matrix.package_name }}/${{ matrix.arch.rpm }}/
${{ env.ZITI_RPM_PROD_REPO }}/redhat/${{ matrix.arch.rpm }}/
--recursive=false
--flat=true
Expand All @@ -115,7 +116,7 @@ jobs:
run: >
jf rt upload
./release/${{ matrix.package_name }}*.deb
/${{ env.ZITI_DEB_TEST_REPO }}/pool/testing/${{ matrix.package_name }}/${{ matrix.arch.deb }}/
${{ env.ZITI_DEB_TEST_REPO }}/pool/${{ matrix.package_name }}/${{ matrix.arch.deb }}/
--deb=debian/main/${{ matrix.arch.deb }}
--recursive=false
--flat=true
Expand All @@ -127,7 +128,7 @@ jobs:
run: >
jf rt upload
./release/${{ matrix.package_name }}*.deb
/${{ env.ZITI_DEB_PROD_REPO }}/pool/release/${{ matrix.package_name }}/${{ matrix.arch.deb }}/
${{ env.ZITI_DEB_PROD_REPO }}/pool/${{ matrix.package_name }}/${{ matrix.arch.deb }}/
--deb=debian/main/${{ matrix.arch.deb }}
--recursive=false
--flat=true
3 changes: 2 additions & 1 deletion .github/workflows/release-quickstart.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ jobs:
# when the ref is release-next the label "quickstartrelease" must be present on the PR for this job to run, and when
# the ref is a release branch the label is not required
if: |
github.event.pull_request.merged == true
github.repository_owner == 'openziti'
&& github.event.pull_request.merged == true
&& (
github.ref != 'refs/heads/release-next'
|| contains(github.event.pull_request.labels.*.name, 'quickstartrelease')
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test-cloudfront-proxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ concurrency:
jobs:
test-cloudfront-proxy-function:
name: CloudFront Proxy Function Dry Run
if: github.repository_owner == 'openziti'
runs-on: ubuntu-latest
steps:
- name: Shallow checkout
Expand Down

0 comments on commit 6b765f5

Please sign in to comment.