From c1220b4cc878b0600a7fd445005aa7acd7d32de5 Mon Sep 17 00:00:00 2001 From: Sebastian Hugentobler Date: Tue, 12 Dec 2023 19:16:38 +0100 Subject: [PATCH] use proper workflow names --- .gitea/workflows/container.yaml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/container.yaml b/.gitea/workflows/container.yaml index 7633944..04e5ee1 100644 --- a/.gitea/workflows/container.yaml +++ b/.gitea/workflows/container.yaml @@ -1,19 +1,17 @@ -name: Gitea Actions Demo -run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀 +name: Build Container Image on: [push] jobs: - Explore-Gitea-Actions: + build-container: runs-on: ubuntu-latest steps: - name: Check out repository code uses: actions/checkout@v3 - - run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner." - name: Build image id: build-image uses: redhat-actions/buildah-build@v2 with: image: docker.io/thallian/alpine-s6 - tags: ${{ gitea.ref_name }} latest + tags: ${{ gitea.ref_name }} ${{ gitea.sha }} latest archs: amd64 containerfiles: | ./Containerfile