From 65d1241cbd4788cbf5db26337eaab71168896dc6 Mon Sep 17 00:00:00 2001 From: Adam Ruberti Date: Tue, 4 Jun 2024 15:29:45 +0200 Subject: [PATCH] ci: add workflow for release and publishing (#10) Release-As: 61.2.0 --- .github/workflows/ci.yml | 80 ++++++++++++++++++++++++++++ .github/workflows/release-please.yml | 18 ------- README.md | 9 ---- 3 files changed, 80 insertions(+), 27 deletions(-) create mode 100644 .github/workflows/ci.yml delete mode 100644 .github/workflows/release-please.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..2ac96f8 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,80 @@ +--- +name: Build & Release +on: + push: + branches: ['*'] + pull_request: + branches: [main] +permissions: + contents: write + pull-requests: write + packages: write +env: + # login to GitHub registry using the default credentials associated with pipeline + REGISTRY: ghcr.io + REGISTRY_USERNAME: ${{ github.actor }} + REGISTRY_PASSWORD: ${{ secrets.GITHUB_TOKEN }} + # Image name will be / + IMAGE_NAME: ${{ github.repository }} +jobs: + release: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - id: rp + if: github.event_name != 'pull_request' && github.ref_name == 'main' + uses: google-github-actions/release-please-action@v4 + with: + release-type: simple + include-v-in-tags: false + - name: Log into registry ${{ env.REGISTRY }} + uses: docker/login-action@v3 + with: + registry: ${{ env.REGISTRY }} + username: ${{ env.REGISTRY_USERNAME }} + password: ${{ env.REGISTRY_PASSWORD }} + - name: Prepare tags for Docker meta + id: tags + env: + # When release-please is skipped, these values will be empty + is_release: ${{ steps.rp.outputs.release_created }} + version: v${{ steps.rp.outputs.major }}.${{ steps.rp.outputs.minor }}.${{ + steps.rp.outputs.patch }} + run: | + tags="" + if [[ "$is_release" = 'true' ]]; then + tags="type=semver,pattern={{version}},value=$version + type=semver,pattern={{major}},value=$version + type=semver,pattern={{major}}.{{minor}},value=$version" + else + tags="type=ref,event=branch + type=ref,event=pr" + fi + { + echo 'tags<> "$GITHUB_OUTPUT" + - name: Docker meta + id: meta + uses: docker/metadata-action@v5 + with: + images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} + tags: ${{ steps.tags.outputs.tags }} + # necessary for multi-platform images + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + # necessary for multi-platform images + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + - name: Build and push + uses: docker/build-push-action@v5 + with: + context: . + provenance: false + push: ${{ github.event_name != 'pull_request' }} + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }} + platforms: linux/amd64,linux/arm64 +# (optional) Add build arguments. I like to have the version available to the build so the app can show it. + build-args: APP_VERSION=${{ steps.meta.outputs.version }} diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml deleted file mode 100644 index f379cc3..0000000 --- a/.github/workflows/release-please.yml +++ /dev/null @@ -1,18 +0,0 @@ ---- -name: release-please -on: - push: - branches: [main] -permissions: - contents: write - pull-requests: write -jobs: - release-please: - runs-on: ubuntu-latest - steps: - - name: release-please - id: release - uses: googleapis/release-please-action@v4 - with: - release-type: simple - default-branch: main diff --git a/README.md b/README.md index 401cc18..a68667d 100644 --- a/README.md +++ b/README.md @@ -82,12 +82,3 @@ Weasyprint Service provides the following endpoints: > ``` - ------------------------------------------------------------------------------------------- - -## Changelog -| Version | Changes | -|---------|----------------------------------------------| -| v1.2.0 | Replacing svg images with png using chromium | -| v1.1.0 | Repository refactored + readme updated | -| v1.0.0 | Initial contribution |