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 }}