Skip to content

ci: testing workflow without environment variables #15

ci: testing workflow without environment variables

ci: testing workflow without environment variables #15

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 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 }}