Skip to content

Commit

Permalink
Revert "Testing removing a file."
Browse files Browse the repository at this point in the history
This reverts commit 30841e3.
  • Loading branch information
davereid committed Mar 22, 2024
1 parent 08d3b3c commit 0ac016f
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions drainpipe-dev/.github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
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 }}

0 comments on commit 0ac016f

Please sign in to comment.