Merge pull request #172 from splitio/dependabot/github_actions/develo… #222
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: unstable | |
on: | |
push: | |
branches-ignore: | |
- master | |
jobs: | |
push-docker-image: | |
name: Build and Push Docker Image | |
runs-on: ubuntu-latest | |
steps: | |
- name: Login to DockerHub | |
uses: docker/login-action@v2 | |
with: | |
registry: splitio-docker-dev.jfrog.io | |
username: ${{ secrets.ARTIFACTORY_DOCKER_USER }} | |
password: ${{ secrets.ARTIFACTORY_DOCKER_PASS }} | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Create build version | |
run: echo "BUILD_VERSION=$(cat package.json | grep version | head -1 | awk '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]')" >> $GITHUB_ENV | |
- name: Get short hash | |
run: echo "SHORT_SHA=$(git rev-parse --short HEAD)" >> $GITHUB_ENV | |
- name: Docker Build | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
push: true | |
tags: splitio-docker-dev.jfrog.io/${{ github.event.repository.name }}:${{ env.SHORT_SHA}} |