Skip to content

Commit 49b79c0

Browse files
committed
Revert "cleanup, ready to merge if passing"
This reverts commit 240e8f9.
1 parent 240e8f9 commit 49b79c0

File tree

1 file changed

+20
-1
lines changed

1 file changed

+20
-1
lines changed

.github/workflows/solid-tests-suites.yml

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
---
22
name: Solid Test Suites
33

4+
env:
5+
# Docker Hub digest (i.e. hash) of the used Docker Images that do not have a version tag.
6+
PUBSUB_TAG: latest@sha256:b73a2a5c98d2005bb667dfc69d1c859d704366024298b9caa24ea2e182c456c2
7+
48
on:
59
push:
610
branches:
7-
- main
11+
- workflow
812
pull_request:
913
branches: [ main ]
1014
# Allow manually triggering the workflow.
@@ -25,6 +29,21 @@ jobs:
2529
fail-fast: false
2630

2731
steps:
32+
- name: Create docker tag from git reference
33+
# A tag name may only contain lower- and uppercase letters, digits, underscores, periods and dashes.
34+
run: |
35+
echo "TAG=$(echo -n "${{ github.ref_name }}" \
36+
| tr --complement --squeeze-repeats '[:alnum:]._-' '_')" \
37+
>> "${GITHUB_ENV}"
38+
39+
- uses: actions/checkout@v4
40+
41+
- uses: actions/cache@v4
42+
id: cache-solid-php-docker
43+
with:
44+
path: cache/solid-php
45+
key: solid-php-docker-${{ github.sha }}
46+
2847
- uses: docker/login-action@v3
2948
with:
3049
registry: ghcr.io

0 commit comments

Comments
 (0)