diff --git a/.github/workflows/autobump.yml b/.github/workflows/autobump.yml deleted file mode 100644 index b4862cb9..00000000 --- a/.github/workflows/autobump.yml +++ /dev/null @@ -1,65 +0,0 @@ -name: autobump - -on: - push: - branches: [ "main" ] - -jobs: - version_bump: - runs-on: ubuntu-latest - outputs: - version: ${{ steps.bump.outputs.tag }} - steps: - - uses: actions/checkout@v3 - - - name: Bump version and push tag - id: bump - uses: anothrNick/github-tag-action@1.64.0 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - WITH_V: true - DEFAULT_BUMP: patch - - build: - needs: version_bump - runs-on: ubuntu-latest - strategy: - matrix: - platform: [linux/amd64, linux/386, linux/arm/v5, linux/arm/v7, linux/arm64/v8, linux/ppc64le, linux/s390x] - steps: - - uses: actions/checkout@v3 - - - name: Set up QEMU - uses: docker/setup-qemu-action@v2 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 - - - name: Login to Docker Hub - uses: docker/login-action@v2 - with: - username: ${{ secrets.DOCKER_HUB_USERNAME }} - password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }} - - - name: Docker meta - id: meta - uses: docker/metadata-action@v4 - with: - images: | - datapreservationprogram/singularity - tags: | - type=schedule - type=ref,event=branch - type=ref,event=pr - type=semver,pattern={{raw}},value=${{ needs.version_bump.outputs.version }} - type=raw,value=latest,enable={{is_default_branch}} - - - name: Build and push - uses: docker/build-push-action@v4 - with: - context: . - platforms: ${{ matrix.platform }} - file: ./Dockerfile - push: true - tags: ${{ steps.meta.outputs.tags }} - labels: ${{ steps.meta.outputs.labels }} diff --git a/version.json b/version.json index 51b0d58d..47accd4b 100644 --- a/version.json +++ b/version.json @@ -1,3 +1,3 @@ { - "version": "v0.2.33" + "version": "v0.2.47" }