Skip to content

Commit

Permalink
Merge pull request #1536 from tloncorp/hm/automate-version-bump
Browse files Browse the repository at this point in the history
ops: add bump action
  • Loading branch information
jamesacklin authored Dec 16, 2022
2 parents ef6bc81 + 174d354 commit 369e0d1
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/bump.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Version Bump
on:
workflow_dispatch:
inputs:
tag:
type: string
required: true
description: Enter the version
jobs:
deploy:
runs-on: ubuntu-latest
name: "Bumps versions and pushes to master"
steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.REPO_TOKEN }}
- name: Bump
run: |
sed -i "s/version\+\[.*]/version+[${{ github.event.inputs.tag }}]/" desk/desk.docket-0
sed -i "s/version\+\[.*]/version+[${{ github.event.inputs.tag }}]/" talk/desk.docket-0
- name: Commit
uses: EndBug/add-and-commit@v9
with:
add: '-A'

3 comments on commit 369e0d1

@vercel
Copy link

@vercel vercel bot commented on 369e0d1 Dec 16, 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:

chatstead – ./ui

chatstead-git-master-tlon.vercel.app
chatstead-tlon.vercel.app
chatstead.vercel.app

@vercel
Copy link

@vercel vercel bot commented on 369e0d1 Dec 16, 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:

homestead – ./ui

homestead-tlon.vercel.app
homestead-git-master-tlon.vercel.app
tlon-homestead.vercel.app

@vercel
Copy link

@vercel vercel bot commented on 369e0d1 Dec 16, 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:

homestead-storybook – ./ui

homestead-storybook.vercel.app
homestead-storybook-tlon.vercel.app
homestead-storybook-git-master-tlon.vercel.app

Please sign in to comment.