diff --git a/.github/workflows/discord.yml b/.github/workflows/discord.yml index 4a680d1fc..e35b261af 100644 --- a/.github/workflows/discord.yml +++ b/.github/workflows/discord.yml @@ -1,5 +1,5 @@ # This is a basic workflow that is manually triggered -name: Discord +name: Notify Discord # Controls when the action will run. Workflow runs when manually triggered using the UI or API. on: diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index d8b02814b..c0c49ccd0 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -8,9 +8,10 @@ permissions: pull-requests: write id-token: write -name: release +name: Manage Release jobs: release_please: + name: Create or prepare release runs-on: ubuntu-latest outputs: major: ${{ steps.release.outputs.major }} @@ -28,15 +29,18 @@ jobs: # these if statements ensure that a publication only occurs when # a new release is created: if: ${{ steps.release.outputs.release_created }} + - uses: actions/setup-node@v4 with: node-version: 20 registry-url: 'https://registry.npmjs.org' if: ${{ steps.release.outputs.release_created }} + - run: npm install if: ${{ steps.release.outputs.release_created }} publish_docker: + name: Publish Tagged Docker Image runs-on: ubuntu-latest needs: release_please if: ${{needs.release_please.outputs.release_created}} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0c881c474..35536fa25 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,4 +1,4 @@ -name: Run tests +name: Run Tests on: push: