From 2fcbc0c093017c6ff7ce777a7686806b905ca1a6 Mon Sep 17 00:00:00 2001 From: Alex Varchuk Date: Tue, 13 Sep 2022 15:02:28 +0300 Subject: [PATCH] chore: disable job for publish cli to Github packages --- .github/workflows/main.yml | 80 +++++++++++++++++++------------------- 1 file changed, 40 insertions(+), 40 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3a2f8eff..0c01bf26 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -3,46 +3,46 @@ on: release: types: [published] jobs: - push_to_registry: - name: Push Docker image to GitHub Packages - runs-on: ubuntu-latest - permissions: - packages: write - contents: read - steps: - - name: Check out the repo - uses: actions/checkout@v3 - - name: Login to GitHub Container Registry - uses: docker/login-action@v1 - with: - registry: ghcr.io - username: ${{ github.repository_owner }} - password: ${{ secrets.GITHUB_TOKEN }} - - name: Prepare - id: prep - run: | - DOCKER_IMAGE=ghcr.io/redocly/redoc/cli - VERSION=edge - if [[ $GITHUB_REF == refs/tags/* ]]; then - VERSION=${GITHUB_REF#refs/tags/} - elif [[ $GITHUB_REF == refs/heads/* ]]; then - VERSION=$(echo ${GITHUB_REF#refs/heads/} | sed -r 's#/+#-#g') - elif [[ $GITHUB_REF == refs/pull/* ]]; then - VERSION=pr-${{ github.event.number }} - fi - TAGS="${DOCKER_IMAGE}:${VERSION},${DOCKER_IMAGE}:latest" - if [ "${{ github.event_name }}" = "push" ]; then - TAGS="$TAGS,${DOCKER_IMAGE}:sha-${GITHUB_SHA::8}" - fi - echo ::set-output name=version::${VERSION} - echo ::set-output name=tags::${TAGS} - echo ::set-output name=created::$(date -u +'%Y-%m-%dT%H:%M:%SZ') - - name: Push to GitHub Packages - uses: docker/build-push-action@v3 - with: - context: ./cli - push: ${{ github.event_name != 'pull_request' }} - tags: ${{ steps.prep.outputs.tags }} + # push_to_registry: + # name: Push Docker image to GitHub Packages + # runs-on: ubuntu-latest + # permissions: + # packages: write + # contents: read + # steps: + # - name: Check out the repo + # uses: actions/checkout@v3 + # - name: Login to GitHub Container Registry + # uses: docker/login-action@v1 + # with: + # registry: ghcr.io + # username: ${{ github.repository_owner }} + # password: ${{ secrets.GITHUB_TOKEN }} + # - name: Prepare + # id: prep + # run: | + # DOCKER_IMAGE=ghcr.io/redocly/redoc/cli + # VERSION=edge + # if [[ $GITHUB_REF == refs/tags/* ]]; then + # VERSION=${GITHUB_REF#refs/tags/} + # elif [[ $GITHUB_REF == refs/heads/* ]]; then + # VERSION=$(echo ${GITHUB_REF#refs/heads/} | sed -r 's#/+#-#g') + # elif [[ $GITHUB_REF == refs/pull/* ]]; then + # VERSION=pr-${{ github.event.number }} + # fi + # TAGS="${DOCKER_IMAGE}:${VERSION},${DOCKER_IMAGE}:latest" + # if [ "${{ github.event_name }}" = "push" ]; then + # TAGS="$TAGS,${DOCKER_IMAGE}:sha-${GITHUB_SHA::8}" + # fi + # echo ::set-output name=version::${VERSION} + # echo ::set-output name=tags::${TAGS} + # echo ::set-output name=created::$(date -u +'%Y-%m-%dT%H:%M:%SZ') + # - name: Push to GitHub Packages + # uses: docker/build-push-action@v3 + # with: + # context: ./cli + # push: ${{ github.event_name != 'pull_request' }} + # tags: ${{ steps.prep.outputs.tags }} dockerhub: name: Publish redoc image to DockerHub runs-on: ubuntu-latest