name: Create Release on: push: tags: - 'v*' jobs: create-release: runs-on: ubuntu-latest steps: - name: checkout repository uses: actions/checkout@v4 - name: install dependencies run: apt-get update && apt-get install -y p7zip-full - name: build release archives run: make all - name: create release and upload assets uses: softprops/action-gh-release@v2 with: name: LocationMount ${{ github.ref_name }} files: | build/LocationMount.zip build/LocationMount.tar.xz