Skip to content

Commit

Permalink
test for quicker release flow
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenvdlinde committed Aug 21, 2024
1 parent 2505580 commit e6cadc7
Showing 1 changed file with 12 additions and 14 deletions.
26 changes: 12 additions & 14 deletions .github/workflows/release-workflows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -128,26 +128,24 @@ jobs:

- name: Create ZIP
run: |
zip -rpackadge-${{ steps.version.outputs.version }}.zip .
zip -r packadge.zip .
- name: Upload ZIP
uses: actions/upload-artifact@v3
with:
name: zip packadge
path: "packadge-${{ steps.version.outputs.version }}.zip"
path: packadge.zip


# Step 10: Create a new release on GitHub
- name: Create GitHub Release
uses: marvinpinto/action-automatic-releases@latest
- name: Upload Release
uses: ncipollo/[email protected]
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: ${{ steps.version.outputs.version }}
prerelease: false
title: "Release ${{ steps.version.outputs.version }}"
files: |
opencatalogi/LICENSE.md
"packadge-${{ steps.version.outputs.version }}.zip"
packadge.tar.gz
# Documentation: https://github.com/marvinpinto/action-automatic-releases
# Explanation: This step creates a new release on GitHub, uploading the generated release files, and tagging the release with the calculated version.
# bodyFile: 'opencatalogi/'
artifacts: |
LICENSE.md
packadge.zip
token: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ steps.version.outputs.version }}
# Documentation: https://github.com/ncipollo/release-action
# Explanation: This step creates a new release on GitHub, uploading the generated release files, and tagging the release with the calculated version.

0 comments on commit e6cadc7

Please sign in to comment.