Skip to content

Commit

Permalink
Complete ci cd workflow using custom composite actions & reusable wor…
Browse files Browse the repository at this point in the history
…kflows (#95)
  • Loading branch information
katybaulch authored Mar 6, 2024
1 parent 3b54d2b commit 183936f
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 57 deletions.
13 changes: 12 additions & 1 deletion .github/workflows/ci.yml → .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CI
name: CI/CD

on:
push:
Expand Down Expand Up @@ -105,6 +105,17 @@ jobs:
fi
fi
manual-semver:
needs:
- code-quality
- test
if: ${{ startsWith(github.ref, 'refs/tags') }}
uses: climatepolicyradar/reusable-workflows/.github/workflows/semver.yml@main
secrets: inherit
with:
repo-name: navigator-admin-backend
semver-tag: main-${GITHUB_SHA::8}

tag:
needs: build
uses: climatepolicyradar/reusable-workflows/.github/workflows/tag.yml@main
Expand Down
22 changes: 0 additions & 22 deletions .github/workflows/debug.yml

This file was deleted.

34 changes: 0 additions & 34 deletions .github/workflows/semver.yml

This file was deleted.

0 comments on commit 183936f

Please sign in to comment.