updated workflow
pipeline / Test (push) Successful in 52s
pipeline / Show (push) Failing after 4s
CI Pipeline / Test (pull_request) Successful in 56s
CI Pipeline / Build and Publish (pull_request) Failing after 5s

This commit is contained in:
Brian Bjarke Jensen
2024-02-25 16:38:09 +01:00
parent 09594e7fd1
commit 8fe8b27aad
+8 -3
View File
@@ -10,13 +10,18 @@ jobs:
steps: steps:
- name: Checkout Code - name: Checkout Code
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Show Environment Variables - name: Set Environment Variables
id: vars id: vars
run: | run: |
echo "REPOSITORY: ${{ gitea.repository }}" echo "REPOSITORY: ${{ gitea.repository }}"
echo "DOCKER_REPO_URL: ${{ vars.docker_repo_url }}" echo "DOCKER_REPO_URL: ${{ vars.docker_repo_url }}"
echo "COMMIT_SHA: ${{ gitea.sha }}" echo "COMMIT_SHA: ${{ gitea.sha }}"
echo $(git rev-parse --short ${{ gitea.sha }}) echo $(git rev-parse --short ${{ gitea.sha }})
echo "SHA_SHORT=$(git rev-parse --short ${{ gitea.sha }} )" echo "sha_short=$(git rev-parse --short ${{ gitea.sha }} )" >> "$vars"
echo "${ SHA_SHORT }"
echo "${{ gitea.env }}" echo "${{ gitea.env }}"
- name: Show Environment Variables
run: |
echo "REPOSITORY: ${{ gitea.repository }}"
echo "DOCKER_REPO_URL: ${{ vars.docker_repo_url }}"
echo "COMMIT_SHA: ${{ gitea.sha }}"
echo "${{ vars.sha_short }}"