Skip to content

Commit

Permalink
fixed CI/CD
Browse files Browse the repository at this point in the history
  • Loading branch information
NivEz committed Jan 12, 2024
1 parent 275cc19 commit 2eaac6c
Show file tree
Hide file tree
Showing 2 changed files with 67 additions and 61 deletions.
64 changes: 64 additions & 0 deletions .github/workflows/bump.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
name: Bump
on:
push:
branches:
- main

permissions:
contents: write

jobs:
bump-choice:
runs-on: ubuntu-latest
outputs:
user-choice: ${{ steps.bump-input.outputs.user-choice }}
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Get bump input from Telegram
id: bump-input
uses: NivEz/interactive-inputs-action@v1
with:
telegram-api-token: ${{ secrets.TELEGRAM_API_TOKEN }}
telegram-chat-id: ${{ secrets.TELEGRAM_CHAT_ID }}
question: 'Updating Telenode. Which bump type you wish to perform?'
options: '["prerelease", "patch", "minor", "major", "skip"]'
default-choice: 'skip'
message: 'The selected bump type is: %s'
timeout: 45
wait-for-timeout-to-finish: true

bump:
runs-on: ubuntu-latest
needs: bump-choice
if: needs.bump-choice.outputs.user-choice != 'skip'
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Setup git config
run: |
git config user.name "GitHub Actions"
git config user.email "${{ secrets.GIT_CONFIG_EMAIL }}"
- name: Bump version
run: npm version ${{ needs.bump-choice.outputs.user-choice }} -m "v%s"

- name: Push
run: git push --follow-tags

- name: Build success message
id: success-message
run: |
latest_tag="$(git describe --abbrev=0 --tags)"
message="Successfully bumped a [${{ needs.bump-choice.outputs.user-choice }}] update: $latest_tag"
echo $message
echo "message=$message" >> $GITHUB_OUTPUT
- name: Send message
uses: NivEz/interactive-inputs-action@v1
with:
telegram-api-token: ${{ secrets.TELEGRAM_API_TOKEN }}
telegram-chat-id: ${{ secrets.TELEGRAM_CHAT_ID }}
simple-message: ${{ steps.success-message.outputs.message }}
64 changes: 3 additions & 61 deletions .github/workflows/ci.yaml → .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
@@ -1,68 +1,10 @@
name: Bump and Release
name: Publish
on:
push:
branches:
- main

permissions:
contents: write
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'

jobs:
bump-choice:
runs-on: ubuntu-latest
outputs:
user-choice: ${{ steps.bump-input.outputs.user-choice }}
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Get bump input from Telegram
id: bump-input
uses: NivEz/interactive-inputs-action@v1
with:
telegram-api-token: ${{ secrets.TELEGRAM_API_TOKEN }}
telegram-chat-id: ${{ secrets.TELEGRAM_CHAT_ID }}
question: 'Updating Telenode. Which bump type you wish to perform?'
options: '["prerelease", "patch", "minor", "major", "skip"]'
default-choice: 'skip'
message: 'The selected bump type is: %s'
timeout: 45
wait-for-timeout-to-finish: true

bump:
runs-on: ubuntu-latest
needs: bump-choice
if: needs.bump-choice.outputs.user-choice != 'skip'
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Setup git config
run: |
git config user.name "GitHub Actions"
git config user.email "${{ secrets.GIT_CONFIG_EMAIL }}"
- name: Bump version
run: npm version ${{ needs.bump-choice.outputs.user-choice }} -m "v%s"

- name: Push
run: git push --follow-tags

- name: Build success message
id: success-message
run: |
latest_tag="$(git describe --abbrev=0 --tags)"
message="Successfully bumped a [${{ needs.bump-choice.outputs.user-choice }}] update: $latest_tag"
echo $message
echo "message=$message" >> $GITHUB_OUTPUT
- name: Send message
uses: NivEz/interactive-inputs-action@v1
with:
telegram-api-token: ${{ secrets.TELEGRAM_API_TOKEN }}
telegram-chat-id: ${{ secrets.TELEGRAM_CHAT_ID }}
simple-message: ${{ steps.success-message.outputs.message }}

publish-choice:
runs-on: ubuntu-latest
needs: bump
Expand Down

0 comments on commit 2eaac6c

Please sign in to comment.