From 74cc9aaf20877cc9ba5bf79e821c84bd3fdf2aca Mon Sep 17 00:00:00 2001 From: Marc Di Luzio Date: Wed, 14 Aug 2024 19:03:51 +0100 Subject: [PATCH] Update the job names and ids in the GHAs --- .github/workflows/publish.yml | 4 ++-- .github/workflows/test.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 7d0d549..d785224 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -1,4 +1,4 @@ -name: Create and publish a Docker image +name: Build and Push Docker on: push: @@ -16,7 +16,7 @@ env: # There is a single job in this workflow. It's configured to run on the latest available version of Ubuntu. jobs: - build-and-push-image: + build-and-push-images: runs-on: ubuntu-latest # Sets the permissions granted to the `GITHUB_TOKEN` for the actions in this job. diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a0b1af9..90a8904 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,9 +1,9 @@ -name: Test +name: Run Tests on: [push] jobs: - build: + test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4