ssh-deploy/.github/workflows/manual-release.yml

73 lines
2.1 KiB
YAML
Raw Permalink Normal View History

2021-05-27 23:56:27 +03:00
name: Manual Release
on:
workflow_dispatch:
inputs:
version:
description: 'Version'
type: choice
2021-05-27 23:56:27 +03:00
required: true
2023-01-06 23:50:25 +03:00
default: fix
options:
2023-01-06 23:50:25 +03:00
- fix
- feat
dryRun:
description: 'DryRun'
type: boolean
default: true
# ENV and Config
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GIT_AUTHOR_NAME: github-actions
GIT_AUTHOR_EMAIL: github-actions@github.com
GIT_COMMITTER_NAME: github-actions
GIT_COMMITTER_EMAIL: github-actions@github.com
CI: true
CONFIG_NODE_VERSION: '["lts/*"]'
CONFIG_OS: '["ubuntu-latest"]'
# Main Job
2021-05-27 23:56:27 +03:00
jobs:
config:
runs-on: ubuntu-latest
outputs:
NODE_VERSION: ${{ steps.set-config.outputs.CONFIG_NODE_VERSION }}
OS: ${{ steps.set-config.outputs.CONFIG_OS }}
steps:
- id: set-config
run: |
echo "CONFIG_NODE_VERSION=${{ toJSON(env.CONFIG_NODE_VERSION) }}" >> $GITHUB_OUTPUT
echo "CONFIG_OS=${{ toJSON(env.CONFIG_OS) }}" >> $GITHUB_OUTPUT
release-manual:
name: Test, Build and force Release
needs: config
runs-on: ${{ matrix.OS }}
2021-05-27 23:56:27 +03:00
strategy:
matrix:
OS: ${{ fromJSON(needs.config.outputs.OS) }}
NODE_VERSION: ${{ fromJSON(needs.config.outputs.NODE_VERSION) }}
2021-05-27 23:56:27 +03:00
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Setup Node.js ${{ matrix.NODE_VERSION }}
uses: actions/setup-node@v3
2021-05-27 23:56:27 +03:00
with:
node-version: ${{ matrix.NODE_VERSION }}
- name: Commit trigger
run: |
git commit --allow-empty -m "${{ github.event.inputs.version }}: Trigger Manual Release"
2021-05-27 23:56:27 +03:00
- name: Install dependencies
run: npm ci
- name: Build Library
run: npm run build --if-present
- name: Run Tests
run: npm test --if-present
2023-01-06 23:50:25 +03:00
- name: Create a release - ${{ github.event.inputs.version }}
uses: cycjimmy/semantic-release-action@v3
2021-05-27 23:56:27 +03:00
with:
dry_run: ${{ github.event.inputs.dryRun == 'true' }}
2021-05-27 23:56:27 +03:00
extra_plugins: |
@semantic-release/changelog
2021-05-27 23:56:27 +03:00
@semantic-release/git