chore: update joplin to 3.7.18 #14
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Publish | |
| on: | |
| push: | |
| branches: [main] | |
| schedule: | |
| - cron: '42 5 * * 2' | |
| workflow_dispatch: | |
| permissions: | |
| contents: write | |
| packages: write | |
| attestations: write | |
| id-token: write | |
| concurrency: | |
| group: publish-joplin-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 | |
| - uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f | |
| - uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - id: meta | |
| uses: docker/metadata-action@c299e40c65443455700f0fdfc63efafe5b349051 | |
| with: | |
| images: ghcr.io/containerpak/joplin | |
| tags: | | |
| type=raw,value=main | |
| type=sha,prefix=sha- | |
| - id: build | |
| uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8 | |
| with: | |
| context: . | |
| file: Containerfile | |
| platforms: linux/amd64 | |
| push: true | |
| pull: true | |
| tags: ${{ steps.meta.outputs.tags }} | |
| labels: ${{ steps.meta.outputs.labels }} | |
| cache-from: type=gha | |
| cache-to: type=gha,mode=max | |
| provenance: mode=max | |
| sbom: true | |
| - name: Verify package | |
| run: docker run --rm ghcr.io/containerpak/joplin:main sh -c 'test -x /usr/bin/joplin && test -f /usr/share/applications/joplin.desktop' | |
| - name: Publish summary | |
| run: echo "ghcr.io/containerpak/joplin@${{ steps.build.outputs.digest }}" >> "$GITHUB_STEP_SUMMARY" | |
| - name: Pin published image | |
| env: | |
| IMAGE_DIGEST: ${{ steps.build.outputs.digest }} | |
| run: | | |
| repository="$(jq -r '.image | split("@")[0]' cpak.json)" | |
| jq --arg image "${repository}@${IMAGE_DIGEST}" '.image = $image' cpak.json > cpak.json.next | |
| mv cpak.json.next cpak.json | |
| if ! git diff --quiet -- cpak.json; then | |
| git config user.name "github-actions[bot]" | |
| git config user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
| git add cpak.json | |
| git commit -m "chore: pin published image [skip ci]" | |
| git push origin "HEAD:${{ github.event.repository.default_branch }}" | |
| fi | |
| - uses: sigstore/cosign-installer@d7543c93d881b35a8faa02e8e3605f69b7a1ce62 | |
| - name: Install cpak-sign | |
| run: | | |
| curl -fsSLO https://github.com/Containerpak/cpak/releases/download/v2.10.16/cpak-sign-linux-amd64 | |
| echo 'ef28930705bdbdd04de4ef3724bd2b65f873cec5709964ce657a9b7f7e0a9a4d cpak-sign-linux-amd64' | sha256sum -c - | |
| install -Dm755 cpak-sign-linux-amd64 /usr/local/bin/cpak-sign | |
| - name: Sign the package state | |
| env: | |
| CPAK_REGISTRY_USERNAME: ${{ github.actor }} | |
| CPAK_REGISTRY_PASSWORD: ${{ secrets.GITHUB_TOKEN }} | |
| run: | | |
| repository="$(printf '%s' '${{ github.repository }}' | tr '[:upper:]' '[:lower:]')" | |
| cpak-sign state \ | |
| --origin "github.com/${repository}" \ | |
| --generation "${{ github.run_number }}" | |
| cosign sign-blob --yes --new-bundle-format=true \ | |
| --bundle cpak-state.sigstore.json cpak-state | |
| cpak-sign attach --image "ghcr.io/${repository}" |