@@ -77,52 +77,52 @@ jobs:
7777 - name : Checkout repository (for PKGBUILD templates)
7878 uses : actions/checkout@v4
7979
80- - name : Update stirling-pdf-bin PKGBUILD
80+ - name : Update stirling-pdf-desktop PKGBUILD
8181 env :
8282 VERSION : ${{ needs.get-release-info.outputs.version }}
8383 DEB_SHA : ${{ needs.get-release-info.outputs.deb_sha256 }}
8484 run : |
85- PKGBUILD=".github/aur/stirling-pdf-bin /PKGBUILD"
85+ PKGBUILD=".github/aur/stirling-pdf-desktop /PKGBUILD"
8686 sed -i "s/^pkgver=.*/pkgver=${VERSION}/" "$PKGBUILD"
8787 sed -i "s/^pkgrel=.*/pkgrel=1/" "$PKGBUILD"
8888 sed -i "s/'PLACEHOLDER_DEB_SHA256'/'${DEB_SHA}'/" "$PKGBUILD"
8989
90- - name : Update stirling-pdf-server-bin PKGBUILD
91- env :
92- VERSION : ${{ needs.get-release-info.outputs.version }}
93- JAR_SHA : ${{ needs.get-release-info.outputs.jar_sha256 }}
94- run : |
95- PKGBUILD=".github/aur/stirling-pdf-server-bin/PKGBUILD"
96- sed -i "s/^pkgver=.*/pkgver=${VERSION}/" "$PKGBUILD"
97- sed -i "s/^pkgrel=.*/pkgrel=1/" "$PKGBUILD"
98- sed -i "s/'PLACEHOLDER_JAR_SHA256'/'${JAR_SHA}'/" "$PKGBUILD"
90+ # Disabled until we sort out the server packaging story.
91+ # The third-party stirling-pdf-bin on AUR currently covers a similar use case.
92+ # - name: Update stirling-pdf-server-bin PKGBUILD
93+ # env:
94+ # VERSION: ${{ needs.get-release-info.outputs.version }}
95+ # JAR_SHA: ${{ needs.get-release-info.outputs.jar_sha256 }}
96+ # run: |
97+ # PKGBUILD=".github/aur/stirling-pdf-server-bin/PKGBUILD"
98+ # sed -i "s/^pkgver=.*/pkgver=${VERSION}/" "$PKGBUILD"
99+ # sed -i "s/^pkgrel=.*/pkgrel=1/" "$PKGBUILD"
100+ # sed -i "s/'PLACEHOLDER_JAR_SHA256'/'${JAR_SHA}'/" "$PKGBUILD"
99101
100- - name : Show updated PKGBUILDs (for dry-run visibility)
102+ - name : Show updated PKGBUILD (for dry-run visibility)
101103 run : |
102- echo "--- stirling-pdf-bin PKGBUILD ---"
103- cat .github/aur/stirling-pdf-bin/PKGBUILD
104- echo ""
105- echo "--- stirling-pdf-server-bin PKGBUILD ---"
106- cat .github/aur/stirling-pdf-server-bin/PKGBUILD
104+ echo "--- stirling-pdf-desktop PKGBUILD ---"
105+ cat .github/aur/stirling-pdf-desktop/PKGBUILD
107106
108- - name : Publish stirling-pdf-bin to AUR
107+ - name : Publish stirling-pdf-desktop to AUR
109108 if : ${{ github.event_name == 'release' || inputs.dry_run == false }}
110109 uses : KSXGitHub/github-actions-deploy-aur@2ac5a4c1d7035885d46b10e3193393be8460b6f1 # v4.1.1
111110 with :
112- pkgname : stirling-pdf-bin
113- pkgbuild : .github/aur/stirling-pdf-bin /PKGBUILD
111+ pkgname : stirling-pdf-desktop
112+ pkgbuild : .github/aur/stirling-pdf-desktop /PKGBUILD
114113 commit_username : Stirling PDF Inc
115114 commit_email : contact@stirlingpdf.com
116115 ssh_private_key : ${{ secrets.AUR_SSH_PRIVATE_KEY }}
117116 commit_message : " Update to v${{ needs.get-release-info.outputs.version }}"
118117
119- - name : Publish stirling-pdf-server-bin to AUR
120- if : ${{ github.event_name == 'release' || inputs.dry_run == false }}
121- uses : KSXGitHub/github-actions-deploy-aur@v4.1.1
122- with :
123- pkgname : stirling-pdf-server-bin
124- pkgbuild : .github/aur/stirling-pdf-server-bin/PKGBUILD
125- commit_username : Stirling PDF Inc
126- commit_email : contact@stirlingpdf.com
127- ssh_private_key : ${{ secrets.AUR_SSH_PRIVATE_KEY }}
128- commit_message : " Update to v${{ needs.get-release-info.outputs.version }}"
118+ # Disabled until we sort out the server packaging story.
119+ # - name: Publish stirling-pdf-server-bin to AUR
120+ # if: ${{ github.event_name == 'release' || inputs.dry_run == false }}
121+ # uses: KSXGitHub/github-actions-deploy-aur@v4.1.1
122+ # with:
123+ # pkgname: stirling-pdf-server-bin
124+ # pkgbuild: .github/aur/stirling-pdf-server-bin/PKGBUILD
125+ # commit_username: Stirling PDF Inc
126+ # commit_email: contact@stirlingpdf.com
127+ # ssh_private_key: ${{ secrets.AUR_SSH_PRIVATE_KEY }}
128+ # commit_message: "Update to v${{ needs.get-release-info.outputs.version }}"
0 commit comments