Skip to content

Commit

Permalink
Update prepare-image.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Ni55aN authored Jan 21, 2024
1 parent d7cebca commit b525e9d
Showing 1 changed file with 16 additions and 7 deletions.
23 changes: 16 additions & 7 deletions .github/workflows/prepare-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,21 @@ jobs:
run: |
echo "qa-version=$(npm show rete-qa version)" >> "$GITHUB_OUTPUT"
echo "kit-version=$(npm show rete-kit version)" >> "$GITHUB_OUTPUT"
- name: Log in to the Container registry
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Tag
id: tag
run: echo "value=qa-${{ steps.npm_version.outputs.qa-version }}-kit-${{ steps.npm_version.outputs.kit-version }}" >> "$GITHUB_OUTPUT"
- name: Check if image with tag exists
uses: tyriis/[email protected]
with:
registry: ${{ env.REGISTRY }}
repository: ${{ env.IMAGE_NAME }}
tag: ${{ steps.tag.outputs.value }}
- name: Create Multiline File
run: |
cat <<EOL > Dockerfile
Expand All @@ -30,19 +45,13 @@ jobs:
RUN npm i -g rete-qa@${{ steps.npm_version.outputs.qa-version }} rete-kit@${{ steps.npm_version.outputs.kit-version }}
RUN npx playwright install --with-deps
EOL
- name: Log in to the Container registry
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@9ec57ed1fcdbf14dcef7dfbe97b2010124a938b7
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=raw,value=qa-${{ steps.npm_version.outputs.qa-version }}-kit-${{ steps.npm_version.outputs.kit-version }}
type=raw,value=${{ steps.tag.outputs.value }}
- name: Build and push Docker image
uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4
with:
Expand Down

0 comments on commit b525e9d

Please sign in to comment.