diff --git a/.gitea/workflows/container.yml b/.gitea/workflows/container.yml index 4ce01fc..0f2e50d 100644 --- a/.gitea/workflows/container.yml +++ b/.gitea/workflows/container.yml @@ -1,11 +1,20 @@ name: Test Workflow run in Container on: push +env: + WORKFLOW_VAR: 123 + jobs: test: runs-on: ubuntu-latest container: image: archlinux:latest + env: + CONTAINER_VAR: 456 steps: - name: Check if in Arch Container... - run: cat /etc/os-release \ No newline at end of file + run: cat /etc/os-release + - name: Print Gitea Workflow Variable + run: echo "$WORKFLOW_VAR" + - name: Print Gitea Workflow Variable + run: echo "$CONTAINER_VAR" \ No newline at end of file