From a15cba64864084b3a5be3c18bead6b0f7bb210cd Mon Sep 17 00:00:00 2001 From: Matthew Wong Date: Wed, 9 Dec 2020 11:22:17 -0800 Subject: [PATCH 1/2] Remove helm chart step from release github workflow --- .github/workflows/release.yaml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 7c75a251b2..c5efce058d 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -3,17 +3,12 @@ on: push: # Sequence of patterns matched against refs/tags tags: - - 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10 + - "v*" # Push events to matching v*, i.e. v1.0, v20.15.10 jobs: build: name: Release runs-on: ubuntu-latest steps: - - name: Checkout code - uses: actions/checkout@v1 - - name: Create Helm chart - run: | - tar cvzf helm-chart.tgz aws-ebs-csi-driver - name: Create Release id: create-release uses: actions/create-release@v1 From 06be76b7001543639ed97531979faf9786c5a27b Mon Sep 17 00:00:00 2001 From: Matthew Wong Date: Wed, 9 Dec 2020 11:30:59 -0800 Subject: [PATCH 2/2] Remove github container registry step --- .github/workflows/container-image.yaml | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/.github/workflows/container-image.yaml b/.github/workflows/container-image.yaml index 4622d710cb..0bb5db4767 100644 --- a/.github/workflows/container-image.yaml +++ b/.github/workflows/container-image.yaml @@ -44,28 +44,6 @@ jobs: TAG=$BRANCH fi echo "TAG=$TAG" >> $GITHUB_ENV - - name: Login to GitHub - uses: docker/login-action@v1 - with: - registry: ghcr.io - username: ${{ github.repository_owner }} - password: ${{ secrets.REGISTRY_TOKEN }} - - name: Push debian target to GitHub - run: | - DEB_PUSH_TAG="docker.pkg.github.com/$GITHUB_REPOSITORY/$IMAGE:$TAG" - docker buildx build \ - -t $DEB_PUSH_TAG \ - --platform=linux/arm64,linux/amd64 \ - --output="type=image,push=true" . \ - --target=debian-base - - name: Push amazonlinux target to GitHub - run: | - AL2_PUSH_TAG="docker.pkg.github.com/$GITHUB_REPOSITORY/$IMAGE:$TAG-amazonlinux" - docker buildx build \ - -t $AL2_PUSH_TAG \ - --platform=linux/arm64,linux/amd64 \ - --output="type=image,push=true" . \ - --target=amazonlinux - name: Login to Docker Hub uses: docker/login-action@v1 with: