mirror of
https://github.com/tloncorp/landscape.git
synced 2024-12-20 07:12:03 +03:00
21 lines
579 B
YAML
21 lines
579 B
YAML
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 develop"
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Bump
|
|
run: sed -i "s/version+\[.*]/version+[${{ github.event.inputs.tag }}]/" desk/desk.docket-0
|
|
- name: Commit
|
|
uses: EndBug/add-and-commit@v9
|
|
with:
|
|
add: '-A'
|
|
message: 'version bump: ${{ github.event.inputs.tag }} [skip actions]' |