Skip to content

ci: testing with GIT_USERNAME #18

ci: testing with GIT_USERNAME

ci: testing with GIT_USERNAME #18

Workflow file for this run

---
name: Test Containerized release-it
on:
push:
branches:
jobs:
test:
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} \
-v $PWD:/app \
ghcr.io/${{ github.repository }}:${{ github.sha }} \
release-it --dry-run
env:
GIT_EMAIL: "[email protected]"
GIT_USERNAME: "Juan Carlos Blanco Delgado"
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}