π Test & Publish Adapter #12
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: π Test & Publish Adapter | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
# Perform a release using a workflow dispatch | |
workflow_dispatch: | |
inputs: | |
# See https://github.com/hyper63/hyper-ci-bump#inputs for available inputs for the bump action | |
version: | |
description: the semver version to bump to | |
required: true | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
deno-version: [1.x] | |
steps: | |
- name: β¬οΈ Checkout repo | |
uses: actions/checkout@v3 | |
- name: π¦ Setup Deno | |
uses: denoland/setup-deno@v1 | |
with: | |
deno-version: ${{ matrix.deno-version }} | |
- name: β‘ Run Tests | |
run: | | |
deno task test | |
env: | |
CI: true | |
publish: | |
# Releases are performed via a workflow dispatch | |
if: github.event_name == 'workflow_dispatch' | |
runs-on: ubuntu-latest | |
needs: [test] | |
steps: | |
- name: β¬οΈ Checkout repo | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: π Env | |
run: | | |
echo "Event name: ${{ github.event_name }}" | |
echo "Git ref: ${{ github.ref }}" | |
echo "GH actor: ${{ github.actor }}" | |
echo "SHA: ${{ github.sha }}" | |
VER=`node --version`; echo "Node ver: $VER" | |
VER=`npm --version`; echo "npm ver: $VER" | |
- name: π€ Set Git User | |
run: | | |
git config --global user.name "${{ github.actor }}" | |
git config --global user.email "${{ github.actor }}@users.noreply.github.com" | |
- name: β Bump | |
id: bump | |
uses: hyper63/hyper-ci-bump@main | |
with: | |
bump-to: ${{ github.event.inputs.version }} | |
- name: β¬οΈ Push | |
run: | | |
git push | |
git push --tags | |
- name: π€ Create Github Release | |
if: steps.bump.outputs.tag | |
uses: softprops/action-gh-release@v1 | |
with: | |
tag_name: ${{ steps.bump.outputs.tag }} | |