From 4ba8793ac08435ff6e9a2acc1b06a836c323cd15 Mon Sep 17 00:00:00 2001 From: Jared Edwards Date: Sat, 2 Oct 2021 14:33:38 -0600 Subject: [PATCH] remove github actions (#28) --- .github/workflows/publish.yaml | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 .github/workflows/publish.yaml diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml deleted file mode 100644 index e3a7b162d..000000000 --- a/.github/workflows/publish.yaml +++ /dev/null @@ -1,31 +0,0 @@ -name: publish - -on: - push: - tags: - - '*' - -jobs: - docker: - runs-on: ubuntu-latest - steps: - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v1 - - - name: Login to DockerHub - uses: docker/login-action@v1 - with: - username: ${{ secrets.DOCKERHUB_USERNAME }} - password: ${{ secrets.DOCKERHUB_TOKEN }} - - - name: Get the version - id: get_version - run: echo ::set-output name=VERSION::$(echo $GITHUB_REF | cut -d / -f 3) - - - name: Build and push - id: docker_build - uses: docker/build-push-action@v2 - with: - push: true - tags: kubefirst/nebulous:${{ steps.get_version.outputs.VERSION }}