Skip to content

Merge pull request #14 from fabnord/main #1

Merge pull request #14 from fabnord/main

Merge pull request #14 from fabnord/main #1

Workflow file for this run

name: Create Bicep template release
on:
push:
tags:
- "v*.*.*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Create Bicep template release package
run: zip -r ${{ github.event.repository.name }}-${{ github.ref_name }}.zip . -x ".git/*" ".github/*" ".gitignore"
- name: Create Bicep template release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: ${{ github.event.repository.name }}-${{ github.ref_name }}.zip
make_latest: true