Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

uuuu #32

Merged
merged 1 commit into from
Jun 28, 2024
Merged

uuuu #32

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 0 additions & 41 deletions .github/workflows/tag-triggered.yml

This file was deleted.

37 changes: 25 additions & 12 deletions .github/workflows/update-main-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,16 +46,29 @@ jobs:
with:
ref: ${{ github.event.pull_request.merge_commit_sha }}

- name: Tag new target
run: |
git config user.email "[email protected]"
git config user.name "GitHub Action"

git tag -f v${{ needs.validate_version.outputs.full_version }} -m $'${{ github.event.pull_request.title }}'
git tag -f v${{ needs.validate_version.outputs.major_version }} -m $'${{ github.event.pull_request.title }}'

- name: Push new tag
run: |
git push -f origin v${{ needs.validate_version.outputs.full_version }}
git push -f origin v${{ needs.validate_version.outputs.major_version }}
# - name: Tag new target
# run: |
# git config user.email "[email protected]"
# git config user.name "GitHub Action"

# git tag -f v${{ needs.validate_version.outputs.full_version }} -m $'${{ github.event.pull_request.title }}'
# git tag -f v${{ needs.validate_version.outputs.major_version }} -m $'${{ github.event.pull_request.title }}'

# - name: Push new tag
# run: |
# git push -f origin v${{ needs.validate_version.outputs.full_version }}
# git push -f origin v${{ needs.validate_version.outputs.major_version }}

- name: "🏷️ Push tag"
uses: EndBug/latest-tag@v1
with:
tag-name: v${{ needs.validate_version.outputs.full_version }}
description: ${{ github.event.pull_request.title }}

- name: "🏷️ Push tag"
uses: EndBug/latest-tag@v1
with:
tag-name: v${{ needs.validate_version.outputs.major_version }}
description: ${{ github.event.pull_request.title }}


2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: quick_math
description: A new Flutter package project.
version: 3.0.3
version: 3.0.4
homepage:

environment:
Expand Down
Loading