From e0f0ae7b8a1560b458511d922bae1624c18294fb Mon Sep 17 00:00:00 2001 From: Peter Motzko Date: Wed, 31 May 2023 14:56:01 +0200 Subject: [PATCH] feat(ci): remove old acapy actions --- .github/workflows/acapy-build.yaml | 45 ------------------------------ 1 file changed, 45 deletions(-) delete mode 100644 .github/workflows/acapy-build.yaml diff --git a/.github/workflows/acapy-build.yaml b/.github/workflows/acapy-build.yaml deleted file mode 100644 index e8d829b7d..000000000 --- a/.github/workflows/acapy-build.yaml +++ /dev/null @@ -1,45 +0,0 @@ -name: Build images and push Acapy as GitHub Package - -on: - workflow_dispatch: - branches: [ develop ] - -env: - REGISTRY: ghcr.io - IMAGE_NAME: ${{ github.repository }}_acapy - IMAGE_VERSION: 0.7.5 - -jobs: - build-and-push-acapy-image: - runs-on: ubuntu-20.04 - permissions: - contents: read - packages: write - - steps: - - name: Checkout repository - run: git clone https://github.com/hyperledger/aries-cloudagent-python.git && cd aries-cloudagent-python && git checkout 0.7.5 - - - name: Login to GitHub Container Registry - if: ${{ !env.ACT }} - uses: docker/login-action@v1 - with: - registry: ${{ env.REGISTRY }} - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} - - - name: Extract Metadata (tags, labels) for Docker - if: ${{ !env.ACT }} - id: meta - uses: docker/metadata-action@v3 - with: - images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ env.IMAGE_VERSION}} - - - name: Build and push Docker image - uses: docker/build-push-action@v2 - with: - context: ./aries-cloudagent-python - file: ./aries-cloudagent-python/docker/Dockerfile.run - push: true - tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ env.IMAGE_VERSION }} - labels: ${{ steps.meta.outputs.labels }} \ No newline at end of file