Skip to main content
Module

x/udibo_react_app/.github/workflows/release.yml

A React Framework for Deno that makes it easy to create highly interactive apps that have server side rendering with file based routing for both your UI and API.
Go to Latest
File
name: Releaseon: create: push: branches: - main workflow_call:jobs: release: name: Release runs-on: ubuntu-latest steps: - name: Get version if: startsWith(github.ref, 'refs/tags/') shell: bash run: | echo "RELEASE_VERSION=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV - name: Release if: env.RELEASE_VERSION != '' uses: softprops/action-gh-release@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: draft: true