Skip to content

Commit

Permalink
Merge pull request #233 from stellar/releases
Browse files Browse the repository at this point in the history
Release drafter and publisher
  • Loading branch information
laysabit authored Mar 20, 2024
2 parents 4874b6b + 63acee8 commit 57becfe
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
template: |
## What's Changed
$CHANGES
**Full Changelog**: https://github.com/$OWNER/$REPOSITORY/compare/$PREVIOUS_TAG...v$RESOLVED_VERSION
37 changes: 37 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Release Drafter and Publisher

on:
push:
tags:
- v*

permissions:
contents: read

jobs:
new_release:
permissions:
# write permission is required to create a github release
contents: write
# write permission is required for autolabeler
# otherwise, read permission is required at least
pull-requests: write
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

# ${{ github.ref }} was not giving v* as tag name, but refs/tags/v* instead, so I had to abbreviate it
- name: Get latest abbreviated tag
id: gettag
run: echo ::set-output name=TAG::$(git describe --tags --abbrev=7)

- uses: release-drafter/release-drafter@v5
with:
commitish: master
name: "stellar-etl ${{ steps.gettag.outputs.TAG }}"
tag: ${{ github.ref }}
publish: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 57becfe

Please sign in to comment.