Bump docker/login-action from 65b78e6e13532edd9afa3aa52ac7964289d1a9c1 to 1f36f5b7a2d2f7bfd524795fc966e6d88c37baa9 #298
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: Continuous Integration | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
prettier: | |
uses: 0GiS0/tour-of-heroes-angular/.github/workflows/prettier-ci.yml@main | |
eslint: | |
uses: 0GiS0/tour-of-heroes-angular/.github/workflows/eslint-ci.yml@main | |
generate_tag_if_push: | |
needs: [prettier, eslint] | |
runs-on: ubuntu-latest | |
if: github.ref == 'refs/heads/main' && github.event_name == 'push' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Bump version and push tag | |
id: create_tag | |
uses: anothrNick/github-tag-action@1.70.0 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
WITH_V: true |