Skip to content

Commit

Permalink
ci: 👷 Auto create tags
Browse files Browse the repository at this point in the history
  • Loading branch information
baptisteArno committed Jun 13, 2022
1 parent 3105ade commit 5c54bb7
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/create-latest-tag.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Create latest tag

on:
push:
tags:
- 'v*.*.*'

jobs:
create-tag:
runs-on: ubuntu-latest
steps:
- name: Run latest-tag
uses: EndBug/latest-tag@latest
21 changes: 21 additions & 0 deletions .github/workflows/create-tag.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Create Tag

on:
push:
branches:
- main

jobs:
create-tag:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: Klemensas/action-autotag@stable
with:
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
tag_prefix: 'v'
- uses: Klemensas/action-autotag@stable
with:
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
package_root: '/packages/typebot-js'
tag_prefix: 'js-lib-v'
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"version": "2.3.0",
"name": "typebot-os",
"private": true,
"license": "AGPL-3.0-or-later",
Expand Down

5 comments on commit 5c54bb7

@vercel
Copy link

@vercel vercel bot commented on 5c54bb7 Jun 13, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on 5c54bb7 Jun 13, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on 5c54bb7 Jun 13, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

builder-v2 – ./apps/builder

builder-v2-git-main-typebot-io.vercel.app
builder-v2-typebot-io.vercel.app
app.typebot.io

@vercel
Copy link

@vercel vercel bot commented on 5c54bb7 Jun 13, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on 5c54bb7 Jun 13, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

docs – ./apps/docs

docs-typebot-io.vercel.app
docs-git-main-typebot-io.vercel.app
docs.typebot.io

Please sign in to comment.