diff --git a/.github/workflows/release.yaml b/.github/workflows/release-chart.yaml similarity index 100% rename from .github/workflows/release.yaml rename to .github/workflows/release-chart.yaml diff --git a/.github/workflows/release-docker.yaml b/.github/workflows/release-docker.yaml new file mode 100644 index 0000000..977a6be --- /dev/null +++ b/.github/workflows/release-docker.yaml @@ -0,0 +1,33 @@ +name: Release docker images + +on: + push: + branches: + - main + +jobs: + release: + runs-on: ubuntu-latest + steps: + - name: Setup Go + uses: actions/setup-go@v2 + with: + go-version: ‘1.14.0’ + + - name: Setup make + run: | + apt update + apt install -y make + + - name: Checkout + uses: actions/checkout@v1 + with: + ref: main + + - name: Configure Git + run: | + git config user.name "$GITHUB_ACTOR" + git config user.email "$GITHUB_ACTOR@users.noreply.github.com" + + - name: make build-images + run: make build-images \ No newline at end of file