test SHA variables
Some checks failed
deploy.yaml / test SHA variables (push) Failing after 0s
Debug Secrets / check-secrets (push) Successful in 1s
Simple Build Test / test-docker (push) Successful in 1s
Test Build-Deploy Pattern / build (push) Successful in 1s
Test SHA Variable / check-sha (push) Successful in 1s
Test Runner / test (push) Successful in 1s
Test Build-Deploy Pattern / deploy (push) Successful in 1s

This commit is contained in:
Sergei Poljanski 2025-11-25 03:19:22 +02:00
commit 3d75f8c355
Signed by: asxpi
GPG key ID: 4F8851660FA4121B

View file

@ -0,0 +1,16 @@
name: Test SHA Variable
on:
push:
branches:
- fix/pipeline
jobs:
check-sha:
runs-on: arch-latest
steps:
- name: Check SHA variables
run: |
echo "GITHUB_SHA env var: ${GITHUB_SHA}"
echo "github.sha context: ${{ github.sha }}"
echo "Substring test: ${GITHUB_SHA::8}"