Bump i18next from 25.1.3 to 25.2.0 (#585) #312
This file contains hidden or 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 and deployment workflow | |
on: | |
push: | |
branches: | |
- "**" | |
jobs: | |
version-build-push: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Fix folder permissions | |
run: sudo chown -R $USER:$USER ${{ github.workspace }} | |
- uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Login to Quay | |
run: echo "${{ secrets.QUAY_ROBOT_TOKEN }}" | docker login -u "${{ secrets.QUAY_ROBOT_USERNAME }}" --password-stdin quay.io | |
- name: Set Git credentials | |
run: | | |
git config --global user.name github-actions | |
git config --global user.email github-actions@github.com | |
- name: Prepare | |
run: make | |
- name: Run tests | |
run: make tests-ci | |
- name: Increase version | |
if: github.ref == 'refs/heads/main' | |
run: | | |
make version-increase | |
git push | |
- name: Build | |
if: github.ref == 'refs/heads/main' | |
run: make build | |
- name: Push | |
if: github.ref == 'refs/heads/main' | |
run: make push |