Fix: Add checkout to Build_Postfix to fix workflow building

Checkout cannot be in a self-contained action, as checkout needs to be
called before the action is invoked -- otherwise the action doesn't
exist. 🤷
This commit is contained in:
Bojan Čekrlić 2023-10-27 07:44:56 +02:00
parent 37a595e69a
commit a665576b20
3 changed files with 6 additions and 4 deletions

View file

@ -4,10 +4,6 @@ description: 'Build the latest version of postfix-exporter'
runs:
using: "composite"
steps:
# Checkout
- name: Checkout
uses: actions/checkout@v4
- name: Checkout
uses: actions/checkout@v4
with:

View file

@ -42,6 +42,9 @@ jobs:
needs:
- Helm_chart_Tests
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: ./.github/actions/build-postfix-exporter
with:
tags: |

View file

@ -42,6 +42,9 @@ jobs:
needs:
- Helm_chart_Tests
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: ./.github/actions/build-postfix-exporter
with:
tags: |