diff --git a/.github/workflows/pdf-publish.yaml b/.github/workflows/pdf-publish.yaml index 2f4ae11..4965f16 100644 --- a/.github/workflows/pdf-publish.yaml +++ b/.github/workflows/pdf-publish.yaml @@ -15,14 +15,11 @@ jobs: steps: - name: Checkout uses: actions/checkout@v2 - - name: Create Electronic Signature - uses: shrink/actions-document-sign@v1 - id: create-signature - name: Publish PDF Document uses: shrink/actions-document-publish@v1 id: publish-document with: - sources: '${{ steps.create-signature.outputs.signature }} constitution.md' + sources: './constitution.md' - if: github.event_name == 'release' && github.event.action == 'published' name: Get Release id: release @@ -33,5 +30,5 @@ jobs: with: upload_url: ${{ steps.release.outputs.upload_url }} asset_path: ${{ steps.publish-document.outputs.pdf }} - asset_name: 'signed-document-${{ steps.create-signature.outputs.label }}.pdf' - asset_content_type: application/pdf \ No newline at end of file + asset_name: 'constitution.pdf' + asset_content_type: application/pdf