Skip to content

Fix file modes inside the archive #9

Fix file modes inside the archive

Fix file modes inside the archive #9

Workflow file for this run

name: Build package
on:
push:
tags: ['v*']
concurrency:
group: ${{github.workflow}}-${{github.ref}}
cancel-in-progress: true
permissions:
contents: write
jobs:
createPackage:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Create package
if: startsWith(github.ref, 'refs/tags/v')
run: |
chmod +x ./tools/mo
REF_NAME="${{github.ref_name}}"
bash ./tools/create_package.sh "${REF_NAME:1}" ./output
- name: Create release
if: startsWith(github.ref, 'refs/tags/v')
uses: softprops/action-gh-release@v2
with:
files: ./output/*