From 4a6cab15d178b74bc83e41d40eb98159b4839c71 Mon Sep 17 00:00:00 2001 From: Alireza Jafari Date: Sun, 18 Aug 2024 11:49:03 +0000 Subject: [PATCH] Build workflow --- .github/workflows/build.yaml | 82 ++++++++++++++++++++++++++++++++++++ 1 file changed, 82 insertions(+) create mode 100644 .github/workflows/build.yaml diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml new file mode 100644 index 0000000..1a1f6d4 --- /dev/null +++ b/.github/workflows/build.yaml @@ -0,0 +1,82 @@ +name: Bump version, build and release +on: + push: + branches: + - main + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: false + +jobs: + tag: + name: Tag and release + runs-on: ubuntu-latest + outputs: + new_tag: ${{ steps.tag_version.outputs.new_tag }} + new_version: ${{ steps.tag_version.outputs.new_version }} + changelog: ${{ steps.tag_version.outputs.changelog }} + + permissions: + contents: write + + steps: + - uses: actions/checkout@v4 + + - name: Bump version and push tag + id: tag_version + uses: mathieudutour/github-tag-action@v6.2 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + default_bump: patch + + - name: Create a GitHub release + uses: ncipollo/release-action@v1 + with: + tag: ${{ steps.tag_version.outputs.new_tag }} + name: Release ${{ steps.tag_version.outputs.new_tag }} + body: ${{ steps.tag_version.outputs.changelog }} + + build: + name: Build and push + runs-on: ubuntu-latest + needs: tag + + permissions: + contents: read + packages: write + + steps: + - uses: actions/checkout@v4 + + - name: Metadata extraction + id: metadata + uses: docker/metadata-action@v5 + with: + # List of Docker images to use as base name for tags + images: | + ghcr.io/${{ github.repository }} + + # Generates Docker tags based on the following events/attributes + tags: | + type=raw,value=${{ needs.tag.outputs.new_tag }} + type=raw,value=${{ needs.tag.outputs.new_version }} + type=sha + latest + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v2 + + - name: Login to GitHub Container Registry + uses: docker/login-action@v2 + with: + registry: ghcr.io + username: ${{ github.repository_owner }} + password: ${{ secrets.GITHUB_TOKEN }} + + - name: Build and push + uses: docker/build-push-action@v3 + with: + push: true + tags: ${{ steps.metadata.outputs.tags }} + labels: ${{ steps.metadata.outputs.labels }}