Skip to content

Commit

Permalink
cleaning up
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonmccallister committed Dec 3, 2024
1 parent e2f6f44 commit 4d0e849
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/php84.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build 8.4 Image
name: Build 8.4
on:
push:
branches: [ 8.4 ]
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/tag-versions.yaml
Original file line number Diff line number Diff line change
@@ -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'

Expand All @@ -11,7 +11,7 @@ env:

jobs:
tag:
name: Tag images with PHP versions
name: Tag images
runs-on: ubuntu-latest
permissions:
contents: read
Expand All @@ -24,15 +24,15 @@ jobs:
- 8.2

steps:
- name: Get PHP version
- name: Get version
id: php_version
env:
PHP_VERSION: ${{ matrix.php_version }}
IMAGE: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ matrix.php_version }}
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 }}
Expand Down

0 comments on commit 4d0e849

Please sign in to comment.