From 4d0e849bc97178675fbfcbf82bda55e7de641912 Mon Sep 17 00:00:00 2001 From: Jason McCallister Date: Tue, 3 Dec 2024 11:01:33 -0500 Subject: [PATCH] cleaning up --- .github/workflows/php84.yml | 2 +- .github/workflows/tag-versions.yaml | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/php84.yml b/.github/workflows/php84.yml index e10afeb..a0f0a26 100644 --- a/.github/workflows/php84.yml +++ b/.github/workflows/php84.yml @@ -1,4 +1,4 @@ -name: Build 8.4 Image +name: Build 8.4 on: push: branches: [ 8.4 ] diff --git a/.github/workflows/tag-versions.yaml b/.github/workflows/tag-versions.yaml index ac3495f..a19ef30 100644 --- a/.github/workflows/tag-versions.yaml +++ b/.github/workflows/tag-versions.yaml @@ -1,7 +1,7 @@ -name: Tag w/ PHP versions +name: Tag with versions on: workflow_dispatch: - branches: [ 8.4, 8.3, 8.2 ] + branches: [ 8.4 ] schedule: - cron: '0 10 * * WED' @@ -11,7 +11,7 @@ env: jobs: tag: - name: Tag images with PHP versions + name: Tag images runs-on: ubuntu-latest permissions: contents: read @@ -24,7 +24,7 @@ jobs: - 8.2 steps: - - name: Get PHP version + - name: Get version id: php_version env: PHP_VERSION: ${{ matrix.php_version }} @@ -32,7 +32,7 @@ jobs: run: | echo "actual_version=$(docker run --rm --entrypoint sh ${IMAGE} -c 'php -v | head -n 1 | cut -d " " -f 2')" >> "$GITHUB_OUTPUT" - - name: Log in to the Container registry + - name: Log in uses: docker/login-action@v2 with: registry: ${{ env.REGISTRY }}