feat: add alpine arm (#856) #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Reference: https://github.com/release-drafter/release-drafter | |
name: Create Release | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
create_release: | |
name: Create Release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up jq | |
uses: dcarbone/[email protected] | |
- name: Get release version from service.yaml | |
run: | | |
RELEASE_VERSION=$(jq -r '.version' package.json ) | |
echo "RELEASE_VERSION=$RELEASE_VERSION" >> $GITHUB_ENV | |
- uses: release-drafter/release-drafter@v5 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
publish: true | |
version: ${{ env.RELEASE_VERSION }} | |
config-name: release-drafter.yaml |