Skip to content

Commit

Permalink
comment
Browse files Browse the repository at this point in the history
  • Loading branch information
aphralG committed Feb 6, 2024
1 parent 65a6ada commit 8e72312
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,11 +94,11 @@ jobs:
package_type=local-package
- name: Build Packages
run: |
PACKAGE_POSTFIX=${{ github.run_id }} make clean local-deb-package local-rpm-package local-txz-package local-apk-package
make clean local-deb-package local-rpm-package local-txz-package local-apk-package
- name: Upload Artifacts
uses: actions/upload-artifact@v3
with:
name: nginx-agent-snapshots
name: nginx-agent-unsigned-snapshots
path: build
retention-days: 1

Expand Down Expand Up @@ -233,7 +233,7 @@ jobs:
- name: Upload Artifacts
uses: actions/upload-artifact@v3
with:
name: nginx-agent
name: nginx-agent-signed-snapshots
path: ./build/azure/packages/nginx-agent.tar.gz
retention-days: 1
- name: Azure Login
Expand Down
6 changes: 1 addition & 5 deletions Makefile.packaging
Original file line number Diff line number Diff line change
Expand Up @@ -178,11 +178,7 @@ package: gpg-key $(PACKAGES_DIR) $(GITHUB_PACKAGES_DIR) $(AZURE_PACKAGES_DIR) ##
find $(PACKAGES_DIR)/txz ;\
echo "Github packages:"; \
find $(GITHUB_PACKAGES_DIR) ;\
echo "Packages Dir" ;\
ls ${PACKAGES_DIR} ;\
echo "Packages ./" ;\
ls ./ ;\
cd $(PACKAGES_DIR) && tar -czvf "./${PACKAGE_PREFIX}.tar.gz" * && cd ../.. && cp "${PACKAGES_DIR}/${PACKAGE_PREFIX}.tar.gz" "${AZURE_PACKAGES_DIR}/${PACKAGE_PREFIX}{PACKAGE_POSTFIX}.tar.gz"; \
cd $(PACKAGES_DIR) && tar -czvf "./${PACKAGE_PREFIX}.tar.gz" * && cd ../.. && cp "${PACKAGES_DIR}/${PACKAGE_PREFIX}.tar.gz" "${AZURE_PACKAGES_DIR}/${PACKAGE_PREFIX}.tar.gz"; \
echo "Azure packages:"; \
find $(AZURE_PACKAGES_DIR) ;

Expand Down

0 comments on commit 8e72312

Please sign in to comment.