Skip to content

Commit

Permalink
Create debug.yml (#93)
Browse files Browse the repository at this point in the history
  • Loading branch information
katybaulch authored Mar 6, 2024
1 parent 2d2028f commit f82447b
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/debug.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Debug

on:
workflow_dispatch

# https://github.com/marketplace/actions/docker-layer-caching
jobs:
tag:
uses: climatepolicyradar/reusable-workflows/.github/workflows/tag.yml@main
with:
repo-name: navigator-admin-backend
semver-tag: main-${GITHUB_SHA::8}
secrets:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
DOCKER_REGISTRY: ${{ secrets.DOCKER_REGISTRY }}

release:
needs: tag
uses: climatepolicyradar/reusable-workflows/.github/workflows/release.yml@main
with:
new_tag: ${{ needs.tag.outputs.new_tag }}

0 comments on commit f82447b

Please sign in to comment.