Skip to content

style: formatting correctly script to run docker on the workflow #6

style: formatting correctly script to run docker on the workflow

style: formatting correctly script to run docker on the workflow #6

Workflow file for this run

---
name: Test Image
on:
push:
branches:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Build the Image
run: docker build . --tag ghcr.io/${{ github.repository }}:${{ github.sha }}
- name: Running release-it on dry-run
run: |
docker run \
-e GIT_EMAIL=${GIT_EMAIL} \
-e GIT_USERNAME=${GIT_USERNAME} \
-e GITHUB_TOKEN=${GITHUB_TOKEN} \
-e RELEASE_IT_PLUGINS="@release-it/conventional-changelog@latest" \
-v $(pwd):/app \
ghcr.io/${{ github.repository }}:${{ github.sha }} \
release-it --dry-run
env:
GIT_EMAIL: ${{ vars.GIT_EMAIL }}
GIT_USERNAME: ${{ vars.GIT_USERNAME }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}