From 98f9e1e2a6188e2c2b5c246878d1bf532c0506d2 Mon Sep 17 00:00:00 2001 From: LeRatierBretonnien Date: Wed, 16 Aug 2023 20:49:26 +0200 Subject: [PATCH] v11 ready --- .gitea/workflows/main.yml | 47 +++++++++++++++++++++++---------------- 1 file changed, 28 insertions(+), 19 deletions(-) diff --git a/.gitea/workflows/main.yml b/.gitea/workflows/main.yml index ae6c5ab..79ae9b6 100644 --- a/.gitea/workflows/main.yml +++ b/.gitea/workflows/main.yml @@ -8,7 +8,12 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - run: echo "💡 The ${{ gitea.repository }} repository will cloned to the runner." + + #- uses: actions/checkout@v3 + - uses: RouxAntoine/checkout@v3.5.4 + with: + ref: 'master' # get part of the tag after the `v` - name: Extract tag version number @@ -20,26 +25,30 @@ jobs: id: sub_manifest_link_version uses: microsoft/variable-substitution@v1 with: - files: 'system.json' + files: 'module.json' env: version: ${{steps.get_version.outputs.version-without-v}} - url: https://github.com/${{github.repository}} - manifest: https://github.com/${{github.repository}}/releases/latest/download/system.json - download: https://github.com/${{github.repository}}/releases/download/${{github.event.release.tag_name}}/fvtt-ecryme.zip - + url: https://www.uberwald.me/gitea/uberwald/fvtt-ecryme + manifest: https://www.uberwald.me/gitea/uberwald/fvtt-ecryme/releases/latest/module.json + download: https://www.uberwald.me/gitea/uberwald/fvtt-ecryme/releases/download/${{github.event.release.tag_name}}/fvtt-ecryme.zip + # Create a zip file with all files required by the module to add to the release - - run: zip -r ./fvtt-ecryme.zip system.json template.json LICENSE.txt README.md fonts/ images/ lang/ modules/ packs/ styles/ templates/ translated/ + - run: | + apt update -y + apt install -y zip - # Create a release for this specific version - - name: Update Release with Files - id: create_version_release - uses: ncipollo/release-action@v1 + - run: zip -r ./fvtt-ecryme.zip system.json template.json README.md LICENSE.txt fonts/ images/ lang/ modules/ packs/ styles/ templates/ translated/ + + - name: setup go + uses: https://github.com/actions/setup-go@v4 with: - allowUpdates: true # Set this to false if you want to prevent updating existing releases - name: ${{ github.event.release.name }} - draft: ${{ github.event.release.unpublished }} - prerelease: ${{ github.event.release.prerelease }} - token: ${{ secrets.GITHUB_TOKEN }} - artifacts: './system.json, ./fvtt-ecryme.zip' - tag: ${{ github.event.release.tag_name }} - body: ${{ github.event.release.body }} + go-version: '>=1.20.1' + + - name: Use Go Action + id: use-go-action + uses: https://gitea.com/actions/release-action@main + with: + files: |- + ./fvtt-ecryme.zip + system.json + api_key: '${{secrets.RELEASE_TOKEN}}'