logro: Migrar put /vote endpoint, test actualizados (#1556) #27
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: build_service_sso | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- "services/wiki/**" | |
jobs: | |
build_service_sso: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "18" | |
- name: Grab version | |
id: version | |
run: echo "::set-output name=version::$(jq -r '.version' services/wiki/package.json)" | |
- name: Login to Docker Hub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Build and push Docker image | |
uses: docker/build-push-action@v4 | |
with: | |
context: services/wiki | |
push: true | |
tags: itacademybcn/ita-wiki-service:v${{ steps.version.outputs.version }} | |
- name: Update version | |
run: | | |
git config --global user.name "ITA Wiki bot" | |
git config --global user.email "bot@itawiki.com" | |
version=$(grep version: ./config/dev/service_wiki.yml | awk '{print $2}') | |
sed -i "s/version: $version/version: ${{ steps.version.outputs.version }}/" ./config/dev/service_wiki.yml | |
git add ./config/dev/service_wiki.yml | |
git commit -m "Bump service_wiki image to v${{ steps.version.outputs.version }}" | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v3 | |
with: | |
title: "Bump service_wiki image version to v${{ steps.version.outputs.version }}" | |
commit-message: "Bump service_wiki image version to v${{ steps.version.outputs.version }}" | |
branch: "bump-service_wiki-to-v${{ steps.version.outputs.version }}" | |
delete-branch: true | |
token: ${{ secrets.GITHUB_TOKEN }} | |
author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com> | |
assignees: ${{ github.actor }} |