Files
On-Site-VTT/.gitea/workflows/release-on-develop.yml
Alexander 8f3bd53a48
Some checks failed
On-Site VTT - Develop / build (push) Failing after 1m19s
seperate packing
2023-12-10 22:47:18 +01:00

46 lines
1.3 KiB
YAML

name: On-Site VTT - Develop
run-name: Run on ${{ github.ref }}
on:
push:
branches:
- develop
jobs:
build:
steps:
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: '1.20'
- name: Get current date
id: date
run: echo "::set-output name=date::$(date +'%Y-%m-%d')"
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Replace version in module.json
uses: jacobtomlinson/gha-find-replace@v3
with:
find: "{{version}}"
replace: dev-${{ steps.date.outputs.date }}-${{ github.run_number }}
include: "on-site-vtt/module.json"
- name: Replace branch in module.json
uses: jacobtomlinson/gha-find-replace@v3
with:
find: "{{branch}}"
replace: ${{ github.ref_name }}
include: "on-site-vtt/module.json"
- name: Pack archive
uses: montudor/action-zip@v1
with:
args: zip -qq -r on-site-vtt.zip on-site-vtt
- name: publish release
uses: ncipollo/release-action@v1
with:
tag: dev-${{ steps.date.outputs.date }}-${{ github.run_number }}
prerelease: true
api_key: "${{secrets.RELEASE_TOKEN}}"
artifacts: on-site-vtt.zip