Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 451 Bytes

File metadata and controls

32 lines (24 loc) · 451 Bytes

React Action

creating a tag

git tag -a -m "Description of this release" v1
git push --follow-tags

using action

name: React App

on:
  push:
    branches: [master]
  pull_request:
    branches: [master]

jobs:
  build:
    runs-on: ubuntu-latest
    
    steps:
    - uses: actions/checkout@v3

    - name: Build React app
      uses: wechoo/wechoo-react-action@v1.0.1
      with:
        example-input: 'Hello World'