From f46624b51c29cdc8ab1e9db6e7414d8691f3c964 Mon Sep 17 00:00:00 2001 From: "Kevin R. Whitley" Date: Sun, 14 Apr 2024 13:09:30 -0500 Subject: [PATCH 1/3] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 051d3e5..03b76b0 100644 --- a/README.md +++ b/README.md @@ -31,10 +31,10 @@ join us on discord - repo stars + Repo stars - follow ittydev + Follow ittydev From 7c6c5f11a3e0d9fef7b894a7469155d0c4015999 Mon Sep 17 00:00:00 2001 From: "Kevin R. Whitley" Date: Sun, 14 Apr 2024 13:11:41 -0500 Subject: [PATCH 2/3] Update README.md --- README.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/README.md b/README.md index 03b76b0..61db1be 100644 --- a/README.md +++ b/README.md @@ -36,9 +36,6 @@ Follow ittydev - - -

### [v5 Documentation](https://itty.dev/itty-router)  |   [v4 -> v5 Migration Guide](https://itty.dev/itty-router/migrations/v4-v5)  |   [Discord](https://discord.gg/53vyrZAu9u) From b5c4f7f7492e51738abe441d14a1321b6f0f65e8 Mon Sep 17 00:00:00 2001 From: "Kevin R. Whitley" Date: Sun, 14 Apr 2024 14:04:56 -0500 Subject: [PATCH 3/3] Create release.yml --- .github/workflows/release.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..b668cc2 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,24 @@ +name: Create Release + +on: + push: + tags: + - '*' + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Check out code + uses: actions/checkout@v2 + + - name: Create Release + uses: actions/create-release@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + tag_name: ${{ github.ref }} + release_name: Release ${{ github.ref }} + body: 'see CHANGELOG for notes' + draft: false + prerelease: false