Skip to content

Prepare release

Prepare release #7

Workflow file for this run

name: 'Run action'
on:
push:
branches:
- '**'
paths:
- '.github/workflows/**'
- 'src/**'
- 'dist/**'
- 'package*.json'
- 'action.json'
jobs:
run-action:
name: 'Run action'
strategy:
matrix:
system:
- ubuntu-latest
runs-on: ${{ matrix.system }}
steps:
- name: Print input
id: echo-action
uses: imesense/gha-echo-action@1813427fb45dce38ee1f1465a395b5744e326fce
with:
input-string: 'Input'
- name: Print output
run: |
echo "${{ steps.echo-action.outputs.output-string }}"