Add entryList for build response for client #8
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Baker | |
on: | |
push: | |
tags: | |
- "v*" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Extract tag version | |
id: tag_version | |
run: echo "VALUE=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT | |
- name: Extract git commit hash | |
id: git_commit | |
run: echo "VALUE=$(git rev-list -1 HEAD)" >> $GITHUB_OUTPUT | |
- name: Prepare the credentials | |
run: | | |
echo "ELLA_ACCESS_TOKEN=${{ secrets.ELLA_ACCESS_TOKEN }}" > .github/credentials/.env | |
- name: build | |
env: | |
VERSION: ${{ steps.tag_version.outputs.VALUE }} | |
GIT_COMMIT: ${{ steps.git_commit.outputs.VALUE }} | |
run: | | |
docker build \ | |
--build-arg GIT_COMMIT=${{ env.GIT_COMMIT }} \ | |
--build-arg VERSION=${{ env.VERSION }} \ | |
--no-cache \ | |
--progress=plain \ | |
--secret id=_env,src=.github/credentials/.env \ | |
-t ellato/baker:${{ env.VERSION }} -t ellato/baker:latest . | |
echo ${{ secrets.ELLA_DOCKER_TOKEN }} | docker login -u ellato --password-stdin | |
docker push ellato/baker:${{ env.VERSION }} | |
docker push ellato/baker:latest |