v11 ready

This commit is contained in:
LeRatierBretonnien 2023-08-16 20:49:26 +02:00
parent 1a90be13be
commit 98f9e1e2a6

View File

@ -8,7 +8,12 @@ jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: 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` # get part of the tag after the `v`
- name: Extract tag version number - name: Extract tag version number
@ -20,26 +25,30 @@ jobs:
id: sub_manifest_link_version id: sub_manifest_link_version
uses: microsoft/variable-substitution@v1 uses: microsoft/variable-substitution@v1
with: with:
files: 'system.json' files: 'module.json'
env: env:
version: ${{steps.get_version.outputs.version-without-v}} version: ${{steps.get_version.outputs.version-without-v}}
url: https://github.com/${{github.repository}} url: https://www.uberwald.me/gitea/uberwald/fvtt-ecryme
manifest: https://github.com/${{github.repository}}/releases/latest/download/system.json manifest: https://www.uberwald.me/gitea/uberwald/fvtt-ecryme/releases/latest/module.json
download: https://github.com/${{github.repository}}/releases/download/${{github.event.release.tag_name}}/fvtt-ecryme.zip 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 # 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 - run: zip -r ./fvtt-ecryme.zip system.json template.json README.md LICENSE.txt fonts/ images/ lang/ modules/ packs/ styles/ templates/ translated/
- name: Update Release with Files
id: create_version_release - name: setup go
uses: ncipollo/release-action@v1 uses: https://github.com/actions/setup-go@v4
with: with:
allowUpdates: true # Set this to false if you want to prevent updating existing releases go-version: '>=1.20.1'
name: ${{ github.event.release.name }}
draft: ${{ github.event.release.unpublished }} - name: Use Go Action
prerelease: ${{ github.event.release.prerelease }} id: use-go-action
token: ${{ secrets.GITHUB_TOKEN }} uses: https://gitea.com/actions/release-action@main
artifacts: './system.json, ./fvtt-ecryme.zip' with:
tag: ${{ github.event.release.tag_name }} files: |-
body: ${{ github.event.release.body }} ./fvtt-ecryme.zip
system.json
api_key: '${{secrets.RELEASE_TOKEN}}'