Skip to content

Commit

Permalink
Merge branch 'master' into feature/MARP-747-ChatGPT-assistant-Not-pos…
Browse files Browse the repository at this point in the history
…sible-to-mark-only-one-word-in-xhtlm-code
  • Loading branch information
ntqdinh-axonivy committed Nov 19, 2024
2 parents efcf452 + c3c0b7b commit ea2b583
Show file tree
Hide file tree
Showing 13 changed files with 45 additions and 23 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Publish Release

on:
push:
tags:
- "v*.*.*"

permissions:
contents: write
pull-requests: read

jobs:
build:
uses: axonivy-market/github-workflows/.github/workflows/publish-release.yml@v4
# The 'publish_release' input parameter is used to control whether the release should be published automatically.
# Uncomment and set to 'false' if you want to prevent the release from being published immediately.
# with:
# publish_release: false
16 changes: 3 additions & 13 deletions .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -1,26 +1,16 @@
name: Release Drafter

on:
push:
branches:
- master
pull_request:
types: [opened, reopened, synchronize]
workflow_dispatch:
inputs:
version:
description: 'Release version'
required: true
prerelease:
description: 'Is this a prerelease?'
required: false
default: false
type: boolean

permissions:
contents: write
pull-requests: write

jobs:
build:
uses: axonivy-market/github-workflows/.github/workflows/release-drafter.yml@v4
with:
version: ${{ github.event.inputs.version }}
prerelease: ${{ github.event.inputs.prerelease }}
4 changes: 3 additions & 1 deletion openai-assistant-product/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.axonivy.connector.openai</groupId>
<artifactId>openai-assistant-product</artifactId>
<version>10.0.16-SNAPSHOT</version>
<version>10.0.17-SNAPSHOT</version>
<packaging>pom</packaging>

<properties>
Expand Down Expand Up @@ -45,6 +45,8 @@
<copy file="README.md" tofile="${project.build.directory}/README.md" />
<loadfile property="variables.yaml" srcFile="${variables.yaml.file}" encoding="UTF-8" failonerror="false" />
<replace file="${project.build.directory}/README.md" token="@variables.yaml@" value="${variables.yaml}" />
<copy file="README_DE.md" tofile="${project.build.directory}/README_DE.md" />
<replace file="${project.build.directory}/README_DE.md" token="@variables.yaml@" value="${variables.yaml}" />
</target>
</configuration>
<goals>
Expand Down
2 changes: 1 addition & 1 deletion openai-assistant-product/zip.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<directory>target</directory>
<outputDirectory>/</outputDirectory>
<includes>
<include>README.md</include>
<include>README*.md</include>
</includes>
</fileSet>
</fileSets>
Expand Down
2 changes: 1 addition & 1 deletion openai-assistant/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Axon Ivy OpenAI assistant
Bundle-SymbolicName: openai-assistant;singleton:=true
Bundle-Version: 10.0.16.qualifier
Bundle-Version: 10.0.17.qualifier
Require-Bundle: org.eclipse.core.runtime,
org.eclipse.core.commands,
org.eclipse.core.resources,
Expand Down
2 changes: 1 addition & 1 deletion openai-assistant/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<groupId>com.axonivy.connector.openai</groupId>
<artifactId>openai-assistant</artifactId>
<version>10.0.16-SNAPSHOT</version>
<version>10.0.17-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>

<properties>
Expand Down
10 changes: 10 additions & 0 deletions openai-assistant/target-platform/ivy.target
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<?pde version="3.8"?>
<target name="ivy">
<locations>
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
<repository location="https://p2.axonivy.com/p2/10.0/"/>
<unit id="ch.ivyteam.ivy.designer.product" version="10.0.17"/>
</location>
</locations>
</target>
2 changes: 1 addition & 1 deletion openai-connector-demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.axonivy.connector.openai</groupId>
<artifactId>openai-connector-demo</artifactId>
<version>10.0.16-SNAPSHOT</version>
<version>10.0.17-SNAPSHOT</version>
<packaging>iar</packaging>
<properties>
<project.build.plugin.version>10.0.16</project.build.plugin.version>
Expand Down
4 changes: 3 additions & 1 deletion openai-connector-product/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.axonivy.connector.openai</groupId>
<artifactId>openai-connector-product</artifactId>
<version>10.0.16-SNAPSHOT</version>
<version>10.0.17-SNAPSHOT</version>
<packaging>pom</packaging>

<properties>
Expand Down Expand Up @@ -45,6 +45,8 @@
<copy file="README.md" tofile="${project.build.directory}/README.md" />
<loadfile property="variables.yaml" srcFile="${variables.yaml.file}" encoding="UTF-8" failonerror="false" />
<replace file="${project.build.directory}/README.md" token="@variables.yaml@" value="${variables.yaml}" />
<copy file="README_DE.md" tofile="${project.build.directory}/README_DE.md" />
<replace file="${project.build.directory}/README_DE.md" token="@variables.yaml@" value="${variables.yaml}" />
</target>
</configuration>
<goals>
Expand Down
2 changes: 1 addition & 1 deletion openai-connector-product/zip.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<directory>target</directory>
<outputDirectory>/</outputDirectory>
<includes>
<include>README.md</include>
<include>README*.md</include>
</includes>
</fileSet>
</fileSets>
Expand Down
2 changes: 1 addition & 1 deletion openai-connector-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.axonivy.connector.openai</groupId>
<artifactId>openai-connector-test</artifactId>
<version>10.0.16-SNAPSHOT</version>
<version>10.0.17-SNAPSHOT</version>
<packaging>iar</packaging>
<properties>
<project.build.plugin.version>10.0.16</project.build.plugin.version>
Expand Down
2 changes: 1 addition & 1 deletion openai-connector/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.axonivy.connector.openai</groupId>
<artifactId>openai-connector</artifactId>
<version>10.0.16-SNAPSHOT</version>
<version>10.0.17-SNAPSHOT</version>
<packaging>iar</packaging>
<properties>
<project.build.plugin.version>10.0.16</project.build.plugin.version>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<groupId>com.axonivy.connector.openai</groupId><!-- your group id: e.g. com.axonivy.connector.<myconnector> or com.axonivy.utils.<myutil> -->
<name>openai-connector</name><!-- fill your product name -->
<artifactId>openai-connector-modules</artifactId><!-- fill your product name + a "-modules" postfix -->
<version>10.0.16-SNAPSHOT</version><!-- identicate your minimal compliant ivy version with the first 2 digits -->
<version>10.0.17-SNAPSHOT</version><!-- identicate your minimal compliant ivy version with the first 2 digits -->
<packaging>pom</packaging>

<modules>
Expand Down

0 comments on commit ea2b583

Please sign in to comment.