Skip to content

Bump guibranco/github-infisical-secrets-check-action (#93) #21

Bump guibranco/github-infisical-secrets-check-action (#93)

Bump guibranco/github-infisical-secrets-check-action (#93) #21

Workflow file for this run

name: Deploy via ftp
on:
push:
branches: main
workflow_dispatch:
concurrency:
group: build-deploy
jobs:
create_release:
name: Create release
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install GitVersion
uses: gittools/actions/gitversion/[email protected]
with:
versionSpec: '5.x'
- name: Determine Version
id: gitversion
uses: gittools/actions/gitversion/[email protected]
with:
useConfigFile: true
- name: Create Release
uses: ncipollo/[email protected]
with:
skipIfReleaseExists: true
allowUpdates: false
draft: false
makeLatest: true
tag: v${{ env.fullSemVer }}
name: Release v${{ env.fullSemVer }}
generateReleaseNotes: true
body: Release ${{ env.fullSemVer }} of ${{ github.repository }}