Added release workflow #3
Workflow file for this run
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
name: Package and Release | |
on: | |
push: | |
tags: | |
- "v*" # Trigger only for tags that start with 'v' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "20" | |
- name: Package source code | |
run: | | |
zip -r quick-translate.alfredworkflow ./src/* # Adjust this command based on your source code structure | |
- name: Get previous tag | |
id: get_previous_tag | |
run: echo "PREVIOUS_TAG=$(git describe --tags --abbrev=0)" >> $GITHUB_ENV | |
- name: Get commits since previous tag | |
id: get_commits_since_previous_tag | |
run: echo "COMMITS_SINCE_PREVIOUS_TAG=$(git log --pretty=format:%s $PREVIOUS_TAG..HEAD)" >> $GITHUB_ENV | |
- name: Create Release | |
id: create_release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ github.ref }} | |
release_name: Release ${{ github.ref }} | |
body: | | |
Changes in this release: | |
${{ env.COMMITS_SINCE_PREVIOUS_TAG }} | |
draft: false | |
prerelease: false | |
- name: Upload Release Asset | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: quick-translate.alfredworkflow | |
asset_name: quick-translate.alfredworkflow | |
asset_content_type: application/zip |