Skip to content

Commit

Permalink
Version v0.2.0 (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
fischerscode authored Apr 27, 2023
1 parent 0a47917 commit 5ca3fa6
Show file tree
Hide file tree
Showing 6 changed files with 39 additions and 25 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: fischerscode/tagger@v0.1
- uses: fischerscode/tagger@v0.2
with:
prefix: v
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## v0.2.0

- Update dependencies
- Support macOS & Windows

## v0.1.0

- Add to marketplace
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[![](https://img.shields.io/github/v/release/fischerscode/tagger)](https://github.com/fischerscode/tagger/releases/latest)
[![](https://img.shields.io/github/license/fischerscode/tagger)](https://github.com/fischerscode/tagger/blob/master/LICENSE)

You can use Tagger either as a [command line tool](#tagger-as-a-command-line-tool) or an [GitHub Action](#tagger-v01-action)
You can use Tagger either as a [command line tool](#tagger-as-a-command-line-tool) or an [GitHub Action](#tagger-v02-action)


# Tagger V0.1 Action
# Tagger V0.2 Action
This action automatically moves semantic tags. When providing the tag '1.2.3', '1' and '1.2' will be moved to the position of '1.2.3'.

This action is meant to be run when ever a release has been created.
Expand All @@ -24,7 +24,7 @@ jobs:
steps:
# You have to check out your repo first.
- uses: actions/checkout@v2
- uses: fischerscode/tagger@v0.1
- uses: fischerscode/tagger@v0.2
with:
# The prefix of the semantic tags.
# Default: ''
Expand Down
4 changes: 2 additions & 2 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,13 @@ runs:
else
suffix=mac
fi
wget https://github.com/fischerscode/tagger/releases/download/v0.1.0/tagger.${suffix} -O ${{ steps.info.outputs.BIN }}
wget https://github.com/fischerscode/tagger/releases/download/v0.2.0/tagger.${suffix} -O ${{ steps.info.outputs.BIN }}
chmod +x ${{ steps.info.outputs.BIN }}
shell: sh
- name: Download tagger (Windows)
if: ${{ runner.os == 'Windows' }}
run: |
Invoke-WebRequest -URI https://github.com/fischerscode/tagger/releases/download/v0.1.0/tagger.windows.exe -OutFile $Env:BIN
Invoke-WebRequest -URI https://github.com/fischerscode/tagger/releases/download/v0.2.0/tagger.windows.exe -OutFile $Env:BIN
echo "Saved to $Env:BIN"
shell: pwsh
env:
Expand Down
43 changes: 26 additions & 17 deletions pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5,64 +5,73 @@ packages:
dependency: "direct main"
description:
name: args
url: "https://pub.dartlang.org"
sha256: "4cab82a83ffef80b262ddedf47a0a8e56ee6fbf7fe21e6e768b02792034dd440"
url: "https://pub.dev"
source: hosted
version: "2.3.0"
version: "2.4.0"
file:
dependency: transitive
description:
name: file
url: "https://pub.dartlang.org"
sha256: "1b92bec4fc2a72f59a8e15af5f52cd441e4a7860b49499d69dfa817af20e925d"
url: "https://pub.dev"
source: hosted
version: "6.1.2"
version: "6.1.4"
meta:
dependency: transitive
description:
name: meta
url: "https://pub.dartlang.org"
sha256: "3c74dbf8763d36539f114c799d8a2d87343b5067e9d796ca22b5eb8437090ee3"
url: "https://pub.dev"
source: hosted
version: "1.7.0"
version: "1.9.1"
path:
dependency: transitive
description:
name: path
url: "https://pub.dartlang.org"
sha256: "8829d8a55c13fc0e37127c29fedf290c102f4e40ae94ada574091fe0ff96c917"
url: "https://pub.dev"
source: hosted
version: "1.8.0"
version: "1.8.3"
pedantic:
dependency: "direct dev"
description:
name: pedantic
url: "https://pub.dartlang.org"
sha256: "67fc27ed9639506c856c840ccce7594d0bdcd91bc8d53d6e52359449a1d50602"
url: "https://pub.dev"
source: hosted
version: "1.11.1"
platform:
dependency: transitive
description:
name: platform
url: "https://pub.dartlang.org"
sha256: "4a451831508d7d6ca779f7ac6e212b4023dd5a7d08a27a63da33756410e32b76"
url: "https://pub.dev"
source: hosted
version: "3.0.2"
version: "3.1.0"
process:
dependency: transitive
description:
name: process
url: "https://pub.dartlang.org"
sha256: "53fd8db9cec1d37b0574e12f07520d582019cb6c44abf5479a01505099a34a09"
url: "https://pub.dev"
source: hosted
version: "4.2.3"
version: "4.2.4"
shell:
dependency: "direct main"
description:
name: shell
url: "https://pub.dartlang.org"
sha256: fd3b7b97e5e7f734138543d5815c6cb6cdd2a1645a0def8ac8e05577cddfbe03
url: "https://pub.dev"
source: hosted
version: "2.0.0"
version:
dependency: "direct main"
description:
name: version
url: "https://pub.dartlang.org"
sha256: "3d4140128e6ea10d83da32fef2fa4003fccbf6852217bb854845802f04191f94"
url: "https://pub.dev"
source: hosted
version: "2.0.0"
version: "3.0.2"
sdks:
dart: ">=2.12.0 <3.0.0"
dart: ">=2.18.0 <3.0.0"
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: tagger
description: Automatically move your GitHub Action tags on release.
version: 0.1.0
version: 0.2.0
repository: https://github.com/fischerscode/tagger

environment:
Expand All @@ -9,7 +9,7 @@ environment:
dependencies:
args: ^2.3.0
shell: ^2.0.0
version: ^2.0.0
version: ^3.0.2

dev_dependencies:
pedantic: ^1.9.0

0 comments on commit 5ca3fa6

Please sign in to comment.