Skip to content

Commit c44faf2

Browse files
committed
update version to 1.0.28
1 parent 163e3e4 commit c44faf2

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/sync-s3.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ jobs:
3333
list-files: 'shell'
3434

3535
- name: Set up AWS CLI
36+
if: github.ref == 'refs/heads/main'
3637
uses: aws-actions/configure-aws-credentials@v4
3738
with:
3839
role-to-assume: ${{ env.AWS_ROLE_ARN }}
@@ -43,7 +44,7 @@ jobs:
4344
- run:
4445
|
4546
if [ "${{ github.event_name }}" == "push" ] && [ "${{ github.ref }}" == "refs/heads/main" ]; then
46-
npm run build -- --event push --file ${SRC}_files
47+
npm run build -- --event push --file ${{ steps.changes.outputs.src_files }}
4748
else
48-
npm run build --file ${SRC}_files
49+
npm run build --file ${{ steps.changes.outputs.src_files }}
4950
fi

src/example_plugin.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import {FDO_SDK, FDOInterface, PluginMetadata} from '@anikitenko/fdo-sdk';
33
class MyPlugin extends FDO_SDK implements FDOInterface {
44
private readonly _metadata: PluginMetadata = {
55
name: "MyPlugin",
6-
version: "1.0.27",
6+
version: "1.0.28",
77
author: "AleXvWaN",
88
description: "A sample FDO plugin",
99
icon: "COG",

0 commit comments

Comments
 (0)