⬆️ Bump cloud.google.com/go/storage from 1.46.0 to 1.47.0 in /backend #58
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: create tag | |
on: | |
pull_request: | |
branches: | |
- master | |
types: [closed] | |
workflow_dispatch: | |
jobs: | |
create-tag: | |
runs-on: ubuntu-latest | |
if: github.event.pull_request.merged == true || github.event_name == 'workflow_dispatch' | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
- name: get-npm-version | |
id: package-version | |
uses: martinbeentjes/npm-get-version-action@main | |
with: | |
path: frontend | |
- name: tag is already existing to GITHUB_ENV | |
run: | | |
tag_is_existing=$( | |
git fetch origin v${{ steps.package-version.outputs.current-version }} && | |
echo true || | |
echo false | |
) | |
echo "TAG_IS_EXISTING=${tag_is_existing}" >> $GITHUB_ENV | |
- if: env.TAG_IS_EXISTING == 'false' | |
run: | | |
git tag v${{ steps.package-version.outputs.current-version }} | |
git push origin v${{ steps.package-version.outputs.current-version }} | |
- name: Build Changelog | |
if: env.TAG_IS_EXISTING == 'false' | |
id: github_release | |
uses: mikepenz/release-changelog-builder-action@v4 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Create Release | |
if: env.TAG_IS_EXISTING == 'false' | |
uses: marvinpinto/action-automatic-releases@latest | |
with: | |
automatic_release_tag: v${{ steps.package-version.outputs.current-version }} | |
prerelease: false | |
repo_token: "${{ secrets.GITHUB_TOKEN }}" |