fix: remove deprecated pkg_resources usage ahead of planned removal i… #278
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
| on: | |
| push: | |
| branches: | |
| - master | |
| name: release-please | |
| jobs: | |
| release_please: | |
| runs-on: ubuntu-latest | |
| outputs: | |
| release_created: ${{ steps.release.outputs.release_created }} | |
| tag_name: ${{ steps.release.outputs.tag_name }} | |
| steps: | |
| - uses: GoogleCloudPlatform/release-please-action@v4 | |
| id: release | |
| with: | |
| release-type: python | |
| package-name: bioconda-utils | |
| publish_containers: | |
| runs-on: ubuntu-latest | |
| needs: release_please | |
| if: needs.release_please.outputs.release_created | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - id: get-tag | |
| run: | | |
| #tag=${{ github.event.release && github.event.release.tag_name || github.sha }} | |
| tag=${{ needs.release_please.outputs.tag_name }} | |
| printf %s "tag=${tag#v}" >> $GITHUB_OUTPUT | |
| - name: Install qemu dependency | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y qemu-user-static | |
| - name: Build x86_64 Image | |
| id: buildah-build | |
| uses: redhat-actions/buildah-build@v2 | |
| with: | |
| image: bioconda-utils-build-env-cos7 | |
| arch: amd64 | |
| build-args: | | |
| BASE_IMAGE=quay.io/condaforge/linux-anvil-cos7-x86_64 | |
| tags: >- | |
| latest | |
| ${{ steps.get-tag.outputs.tag }} | |
| dockerfiles: | | |
| ./Dockerfile | |
| - name: Push To Quay | |
| uses: redhat-actions/push-to-registry@v2 | |
| with: | |
| image: ${{ steps.buildah-build.outputs.image }} | |
| tags: ${{ steps.buildah-build.outputs.tags }} | |
| registry: ${{ secrets.QUAY_BIOCONDA_REPO }} | |
| username: ${{ secrets.QUAY_BIOCONDA_USERNAME }} | |
| password: ${{ secrets.QUAY_BIOCONDA_TOKEN }} | |
| - name: Build ARM Image | |
| id: buildah-build-arm | |
| uses: redhat-actions/buildah-build@v2 | |
| with: | |
| image: bioconda-utils-build-env-cos7-aarch64 | |
| arch: arm64 | |
| build-args: | | |
| BASE_IMAGE=quay.io/condaforge/linux-anvil-aarch64 | |
| tags: >- | |
| latest | |
| ${{ steps.get-tag.outputs.tag }} | |
| dockerfiles: | | |
| ./Dockerfile | |
| - name: Push To Quay | |
| uses: redhat-actions/push-to-registry@v2 | |
| with: | |
| image: ${{ steps.buildah-build-arm.outputs.image }} | |
| tags: ${{ steps.buildah-build-arm.outputs.tags }} | |
| registry: ${{ secrets.QUAY_BIOCONDA_REPO }} | |
| username: ${{ secrets.QUAY_BIOCONDA_USERNAME }} | |
| password: ${{ secrets.QUAY_BIOCONDA_TOKEN }} |