From 171635ea7166c29f18bd99468fb6fd9e72f307c0 Mon Sep 17 00:00:00 2001 From: Brian Bjarke Jensen Date: Wed, 6 Mar 2024 17:27:57 +0100 Subject: [PATCH] deleted unused workflow file --- .gitea/workflows/show_env_vars.yaml | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 .gitea/workflows/show_env_vars.yaml diff --git a/.gitea/workflows/show_env_vars.yaml b/.gitea/workflows/show_env_vars.yaml deleted file mode 100644 index 5bd051a..0000000 --- a/.gitea/workflows/show_env_vars.yaml +++ /dev/null @@ -1,24 +0,0 @@ -name: pipeline -run-name: ${{ gitea.actor }} is running the script -runs-on: ubuntu-latest -on: push -image: python:3.12 -jobs: - show: - name: Show - runs-on: ubuntu-latest - steps: - - name: Checkout Code - uses: actions/checkout@v3 - - name: Set Environment Variables - run: | - echo "REPOSITORY: ${{ gitea.repository }}" - echo "DOCKER_REPO_URL: ${{ vars.docker_repo_url }}" - echo "COMMIT_SHA: ${{ gitea.sha }}" - echo $(git rev-parse --short ${{ gitea.sha }}) - echo "sha_short=$(git rev-parse --short ${{ gitea.sha }} )" >> "$GITHUB_ENV" - - name: Show Environment Variables - run: | - echo "REPOSITORY: ${{ gitea.repository }}" - echo "DOCKER_REPO_URL: ${{ vars.docker_repo_url }}" - echo "COMMIT_SHA: ${{ env.sha_short }}"