Skip to content

Commit

Permalink
Merge pull request #1421 from openziti/fix-package-paths
Browse files Browse the repository at this point in the history
normalize package depths and paths
  • Loading branch information
qrkourier authored Oct 10, 2023
2 parents a3f1b68 + 6b765f5 commit 2fc1316
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 2fc1316

Please sign in to comment.