Skip to content

Commit 368e4ed

Browse files
committed
adapt: core => add-in file
1 parent eac28bd commit 368e4ed

File tree

7 files changed

+4
-96
lines changed

7 files changed

+4
-96
lines changed

.github/workflows/build-for-release.yml

Lines changed: 0 additions & 83 deletions
This file was deleted.

.github/workflows/build-release-zip-file.yml

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
with:
2626
source-dir: "source"
2727
target-dir: "bin"
28-
file-name: "ACLibDeclarationDictCore.accda"
28+
file-name: "ACLibDeclarationDict.accda"
2929
run-accunit-tests: true
3030
timeout-minutes: 10
3131

@@ -38,20 +38,11 @@ jobs:
3838
file-name: "DeclDictTester.accdb"
3939
run-accunit-tests: true
4040
timeout-minutes: 10
41-
42-
- name: "Build Example_APIusage"
43-
id: build_example_api_usage
44-
uses: AccessCodeLib/msaccess-vcs-build@main
45-
with:
46-
source-dir: "Example_APIusage.accdb.src"
47-
target-dir: "bin"
48-
file-name: "Example_APIusage.accdb"
49-
timeout-minutes: 10
5041

5142
- name: "Create versioned ZIP file"
5243
run: |
5344
$zipName = "ACLibImportWizard_${{ github.event.release.tag_name }}.zip"
54-
Compress-Archive -Path .\bin\*.accda, .\bin\Example_APIusage.accdb -DestinationPath $zipName
45+
Compress-Archive -Path .\bin\*.accda -DestinationPath $zipName
5546
echo "ZIP_NAME=$zipName" | Out-File -FilePath $env:GITHUB_ENV -Append
5647
5748
- name: "Upload ZIP to GitHub Release"

DeclDictTester.accdb.src/modules/_LoadAddIn.bas

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Public Sub LoadAddIn_RunVcsCheck()
1414
'API: RunVcsCheck(Optional ByVal OpenDialogToFixLettercase As Boolean = False)
1515

1616
Dim AddInCallPath As String
17-
AddInCallPath = CurrentProject.Path & "\ACLibDeclarationDictCore.RunVcsCheck"
17+
AddInCallPath = CurrentProject.Path & "\ACLibDeclarationDict.RunVcsCheck"
1818

1919
Dim Result As Variant
2020
Result = Application.Run(AddInCallPath, True)

Example_APIusage.accdb.src/modules/_LoadAddIn.bas

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Public Sub LoadAddIn()
77
'API: RunVcsCheck(Optional ByVal OpenDialogToFixLettercase As Boolean = False)
88

99
Dim AddInCallPath As String
10-
AddInCallPath = CurrentProject.Path & "\ACLibDeclarationDictCore.RunVcsCheck"
10+
AddInCallPath = CurrentProject.Path & "\ACLibDeclarationDict.RunVcsCheck"
1111

1212
Dim Result As Variant
1313
Result = Application.Run(AddInCallPath, True)

0 commit comments

Comments
 (0)