mirror of
https://github.com/Redocly/redoc.git
synced 2025-08-05 12:50:18 +03:00
chore: disable job for publish cli to Github packages
This commit is contained in:
parent
9c086cff2f
commit
2fcbc0c093
80
.github/workflows/main.yml
vendored
80
.github/workflows/main.yml
vendored
|
@ -3,46 +3,46 @@ on:
|
||||||
release:
|
release:
|
||||||
types: [published]
|
types: [published]
|
||||||
jobs:
|
jobs:
|
||||||
push_to_registry:
|
# push_to_registry:
|
||||||
name: Push Docker image to GitHub Packages
|
# name: Push Docker image to GitHub Packages
|
||||||
runs-on: ubuntu-latest
|
# runs-on: ubuntu-latest
|
||||||
permissions:
|
# permissions:
|
||||||
packages: write
|
# packages: write
|
||||||
contents: read
|
# contents: read
|
||||||
steps:
|
# steps:
|
||||||
- name: Check out the repo
|
# - name: Check out the repo
|
||||||
uses: actions/checkout@v3
|
# uses: actions/checkout@v3
|
||||||
- name: Login to GitHub Container Registry
|
# - name: Login to GitHub Container Registry
|
||||||
uses: docker/login-action@v1
|
# uses: docker/login-action@v1
|
||||||
with:
|
# with:
|
||||||
registry: ghcr.io
|
# registry: ghcr.io
|
||||||
username: ${{ github.repository_owner }}
|
# username: ${{ github.repository_owner }}
|
||||||
password: ${{ secrets.GITHUB_TOKEN }}
|
# password: ${{ secrets.GITHUB_TOKEN }}
|
||||||
- name: Prepare
|
# - name: Prepare
|
||||||
id: prep
|
# id: prep
|
||||||
run: |
|
# run: |
|
||||||
DOCKER_IMAGE=ghcr.io/redocly/redoc/cli
|
# DOCKER_IMAGE=ghcr.io/redocly/redoc/cli
|
||||||
VERSION=edge
|
# VERSION=edge
|
||||||
if [[ $GITHUB_REF == refs/tags/* ]]; then
|
# if [[ $GITHUB_REF == refs/tags/* ]]; then
|
||||||
VERSION=${GITHUB_REF#refs/tags/}
|
# VERSION=${GITHUB_REF#refs/tags/}
|
||||||
elif [[ $GITHUB_REF == refs/heads/* ]]; then
|
# elif [[ $GITHUB_REF == refs/heads/* ]]; then
|
||||||
VERSION=$(echo ${GITHUB_REF#refs/heads/} | sed -r 's#/+#-#g')
|
# VERSION=$(echo ${GITHUB_REF#refs/heads/} | sed -r 's#/+#-#g')
|
||||||
elif [[ $GITHUB_REF == refs/pull/* ]]; then
|
# elif [[ $GITHUB_REF == refs/pull/* ]]; then
|
||||||
VERSION=pr-${{ github.event.number }}
|
# VERSION=pr-${{ github.event.number }}
|
||||||
fi
|
# fi
|
||||||
TAGS="${DOCKER_IMAGE}:${VERSION},${DOCKER_IMAGE}:latest"
|
# TAGS="${DOCKER_IMAGE}:${VERSION},${DOCKER_IMAGE}:latest"
|
||||||
if [ "${{ github.event_name }}" = "push" ]; then
|
# if [ "${{ github.event_name }}" = "push" ]; then
|
||||||
TAGS="$TAGS,${DOCKER_IMAGE}:sha-${GITHUB_SHA::8}"
|
# TAGS="$TAGS,${DOCKER_IMAGE}:sha-${GITHUB_SHA::8}"
|
||||||
fi
|
# fi
|
||||||
echo ::set-output name=version::${VERSION}
|
# echo ::set-output name=version::${VERSION}
|
||||||
echo ::set-output name=tags::${TAGS}
|
# echo ::set-output name=tags::${TAGS}
|
||||||
echo ::set-output name=created::$(date -u +'%Y-%m-%dT%H:%M:%SZ')
|
# echo ::set-output name=created::$(date -u +'%Y-%m-%dT%H:%M:%SZ')
|
||||||
- name: Push to GitHub Packages
|
# - name: Push to GitHub Packages
|
||||||
uses: docker/build-push-action@v3
|
# uses: docker/build-push-action@v3
|
||||||
with:
|
# with:
|
||||||
context: ./cli
|
# context: ./cli
|
||||||
push: ${{ github.event_name != 'pull_request' }}
|
# push: ${{ github.event_name != 'pull_request' }}
|
||||||
tags: ${{ steps.prep.outputs.tags }}
|
# tags: ${{ steps.prep.outputs.tags }}
|
||||||
dockerhub:
|
dockerhub:
|
||||||
name: Publish redoc image to DockerHub
|
name: Publish redoc image to DockerHub
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
Loading…
Reference in New Issue
Block a user