Skip to content

[Fix] Offline sync and permission (#8222) #1558

[Fix] Offline sync and permission (#8222)

[Fix] Offline sync and permission (#8222) #1558

Workflow file for this run

name: Release Demo
on:
push:
branches: [develop, temp]
jobs:
release:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [buildjet-4vcpu-ubuntu-2204]
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Bump version and push tag
uses: mathieudutour/[email protected]
id: tag_version
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
release_branches: master,main,develop,stage
pre_release_branches: something_to_possible_use_later
- name: Create a GitHub release
uses: ncipollo/release-action@v1
with:
allowUpdates: true
generateReleaseNotes: true
prerelease: true
token: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ steps.tag_version.outputs.new_tag }}
name: ${{ steps.tag_version.outputs.new_tag }}
body: ${{ steps.tag_version.outputs.changelog }}