This repository has been archived by the owner on Mar 4, 2024. It is now read-only.
test #1125
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: CI | |
on: | |
push: | |
branches: | |
- test-build-push-action | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Configure git for private modules | |
env: | |
ROBOT_TOKEN: ${{ secrets.ROBOT_TOKEN }} | |
run: git config --global url."https://percona-platform-robot:${ROBOT_TOKEN}@github.com".insteadOf "https://github.com" | |
- name: Everest Backend - check out | |
uses: actions/checkout@v4 | |
with: | |
path: ./backend | |
- name: Everest - Build and Push everest release image | |
uses: docker/build-push-action@v5 | |
with: | |
context: backend | |
push: false | |
tags: test | |
build-args: | | |
"IS_RELEASE=1" |