feat: update icon #11
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| on: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| version: | |
| runs-on: ubuntu-latest | |
| env: | |
| MAJOR_VERSION: 1 | |
| outputs: | |
| versionOut: ${{ steps.generateVersion.outputs.version }} | |
| versionSemVerOut: ${{ steps.semVer.outputs.semVersion }} | |
| steps: | |
| - id: generateVersion | |
| run: echo "version=$MAJOR_VERSION.0.${{ github.run_number }}.0" >> "$GITHUB_OUTPUT" | |
| - id: semVer | |
| run: echo "semVersion=$MAJOR_VERSION.0.${{ github.run_number }}" >> "$GITHUB_OUTPUT" | |
| ci: | |
| runs-on: ubuntu-latest | |
| needs: | |
| - version | |
| env: | |
| TARGET_VERSION: ${{needs.version.outputs.versionOut}} | |
| SEM_VERSION: ${{needs.version.outputs.versionSemVerOut}} | |
| steps: | |
| - run: sudo apt-get update && sudo apt-get install -y jq | |
| - uses: actions/checkout@v4 | |
| - name: Set version in manifest | |
| run: jq --arg ver "$TARGET_VERSION" '.Version = $ver' ./resources/manifest.json > temp.json && mv temp.json ./resources/manifest.json | |
| - run: docker build -t temp . | |
| - run: docker run -v $(pwd)/tmpdist:/tmpdist temp sh -c "cp /dist/com.ftt.apimonkey.sdPlugin.zip /tmpdist/com.ftt.apimonkey.sdPlugin.zip" | |
| - name: release | |
| uses: actions/create-release@v1 | |
| id: create_release | |
| with: | |
| draft: false | |
| prerelease: false | |
| release_name: ${{ env.TARGET_VERSION }} | |
| tag_name: ${{ env.SEM_VERSION }} | |
| env: | |
| GITHUB_TOKEN: ${{ github.token }} | |
| - name: upload windows artifact | |
| uses: actions/upload-release-asset@v1 | |
| env: | |
| GITHUB_TOKEN: ${{ github.token }} | |
| with: | |
| upload_url: ${{ steps.create_release.outputs.upload_url }} | |
| asset_path: tmpdist/com.ftt.apimonkey.sdPlugin.zip | |
| asset_name: com.ftt.apimonkey.sdPlugin.zip | |
| asset_content_type: application/octet-stream |