Skip to content

Commit

Permalink
create zip with each new tagged release (#121)
Browse files Browse the repository at this point in the history
* create zip with each new tagged release

* update .gitattributes
  • Loading branch information
afragen authored Nov 4, 2024
1 parent 5de28a1 commit a2f31b0
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
* text=auto

.gitattributes export-ignore
.gitignore export-ignore
.editorconfig export-ignore
composer.lock export-ignore
phpunit.xml export-ignore
phpunit.xml.dist export-ignore
phpcs.xml export-ignore
phpcs.xml.dist export-ignore
.phpcs.xml export-ignore
/.github export-ignore
/bin export-ignore
/tests export-ignore
43 changes: 43 additions & 0 deletions .github/workflows/releases.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
on:
push:
tags:
- "**"

name: Upload Release Asset

jobs:
build:
name: Upload Release Asset
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@master

- name: Get tag
id: tag
run: echo "tag=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT

- name: Build project
run: git archive -o /tmp/AspireUpdate-${{ steps.tag.outputs.tag }}.zip --prefix=AspireUpdate/ ${{ steps.tag.outputs.tag }}

- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ steps.tag.outputs.tag }}
release_name: ${{ steps.tag.outputs.tag }}
draft: false
prerelease: false

- name: Upload Release Asset
id: 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: /tmp/AspireUpdate-${{ steps.tag.outputs.tag }}.zip
asset_name: AspireUpdate-${{ steps.tag.outputs.tag }}.zip
asset_content_type: application/zip

0 comments on commit a2f31b0

Please sign in to comment.