diff --git a/.gitea/workflows/create-release.yml b/.gitea/workflows/create-release.yml new file mode 100644 index 0000000..45d8c06 --- /dev/null +++ b/.gitea/workflows/create-release.yml @@ -0,0 +1,22 @@ +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