Skip to content

Issue #500: Document disabling Pantheon integrated composer and autop… #1

Issue #500: Document disabling Pantheon integrated composer and autop…

Issue #500: Document disabling Pantheon integrated composer and autop… #1

Workflow file for this run

name: Release
on:
push:
tags:
- 'v*'
concurrency:
group: ${{ github.workflow }}-${{ github.ref || github.sha }}
cancel-in-progress: false
permissions:
contents: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Create release
run: |
gh release create ${{ github.ref_name }} \
--title "${{ github.ref_name }}" \
--notes "See https://github.com/Lullabot/drainpipe/releases/tag/${{ github.ref_name }}"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}