diff --git a/.github/workflows/sync-s3.yml b/.github/workflows/sync-s3.yml index c9efd1b..5f66690 100644 --- a/.github/workflows/sync-s3.yml +++ b/.github/workflows/sync-s3.yml @@ -33,6 +33,7 @@ jobs: list-files: 'shell' - name: Set up AWS CLI + if: github.ref == 'refs/heads/main' uses: aws-actions/configure-aws-credentials@v4 with: role-to-assume: ${{ env.AWS_ROLE_ARN }} @@ -43,7 +44,7 @@ jobs: - run: | if [ "${{ github.event_name }}" == "push" ] && [ "${{ github.ref }}" == "refs/heads/main" ]; then - npm run build -- --event push --file ${SRC}_files + npm run build -- --event push --file ${{ steps.changes.outputs.src_files }} else - npm run build --file ${SRC}_files + npm run build --file ${{ steps.changes.outputs.src_files }} fi diff --git a/src/example_plugin.ts b/src/example_plugin.ts index 8c07816..296fe32 100644 --- a/src/example_plugin.ts +++ b/src/example_plugin.ts @@ -3,7 +3,7 @@ import {FDO_SDK, FDOInterface, PluginMetadata} from '@anikitenko/fdo-sdk'; class MyPlugin extends FDO_SDK implements FDOInterface { private readonly _metadata: PluginMetadata = { name: "MyPlugin", - version: "1.0.27", + version: "1.0.28", author: "AleXvWaN", description: "A sample FDO plugin", icon: "COG",