Skip to content
This repository has been archived by the owner on Apr 10, 2024. It is now read-only.

Commit

Permalink
Merge pull request #7 from techno-dwarf-works/uurha-patch-1
Browse files Browse the repository at this point in the history
Update upm-publish.yml
  • Loading branch information
uurha authored Oct 14, 2023
2 parents fee7f5d + 00bbccb commit 9ff8404
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 13 deletions.
36 changes: 30 additions & 6 deletions .github/workflows/upm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,41 @@ on:
type: boolean

jobs:
convert_string:
name: Prepare String
runs-on: ubuntu-latest
outputs:
converted_string: ${{ steps.convertString.outputs.convertedString }}

steps:
- name: Set the original string
id: setOriginalString
run: echo "::set-output name=originalString::${{ github.event.repository.name }}"

- name: Convert string
id: convertString
run: |
ORIGINAL_STRING="${{ steps.setOriginalString.outputs.originalString }}"
IFS='-' read -ra PARTS <<< "$ORIGINAL_STRING"
RESULT=""
for PART in "${PARTS[@]}"; do
RESULT="${RESULT}$(echo "${PART^}")"
done
echo "::set-output name=convertedString::${RESULT}"
prepare:
needs: convert_string
name: Prepare
if: ${{ inputs.run_manually }} || github.event.pull_request.merged == true
runs-on: ubuntu-latest
steps:

steps:
- uses: actions/checkout@master
- name: Copy the README
run: |
cp "README.md" "Assets/${{ github.event.repository.name }}/README.md"
cp "README.md" "Assets/${{ needs.convert_string.outputs.converted_string }}/README.md"
- name: Copy the LICENSE
run: |
cp "LICENSE" "Assets/${{ github.event.repository.name }}/LICENSE"
cp "LICENSE" "Assets/${{ needs.convert_string.outputs.converted_string }}/LICENSE"
- name: Verify Changed files
uses: tj-actions/[email protected]
id: verify-changed-files
Expand All @@ -50,9 +72,11 @@ jobs:
github_token: ${{ secrets.GITHUB_TOKEN }}

deploy:
needs:
- convert_string
- prepare
name: Deploy
if: ${{ success() }}
needs: prepare
runs-on: ubuntu-latest
steps:
# Any prerequisite steps
Expand All @@ -69,7 +93,7 @@ jobs:
env:
REPO: self
BRANCH: upm
FOLDER: Assets/${{ github.event.repository.name }}
FOLDER: Assets/${{ needs.convert_string.outputs.converted_string }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SKIP_EMPTY_COMMITS: true
MESSAGE: "{msg}"
14 changes: 7 additions & 7 deletions Assets/BetterDataStructures/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,19 @@
"name": "com.uurha.betterdatastructures",
"displayName": "Better Data Structures",
"description": "Collection of useful data structures for Unity",
"version": "0.1.0",
"version": "0.1.1",
"unity": "2018.3",
"author": {
"name": "Arcueid D'athemon",
"url": "https://github.com/uurha"
"name": "Better Plugins",
"url": "https://github.com/techno-dwarf-works/"
},
"changelogUrl": "https://github.com/uurha/BetterDataStructures",
"documentationUrl": "https://github.com/uurha/BetterDataStructures/tree/main#readme",
"changelogUrl": "https://github.com/techno-dwarf-works/better-data-structures",
"documentationUrl": "https://github.com/techno-dwarf-works/better-data-structures/tree/main#readme",
"license": "MIT",
"licensesUrl":"https://github.com/uurha/BetterDataStructures/blob/main/LICENSE",
"licensesUrl":"https://github.com/techno-dwarf-works/better-data-structures/blob/main/LICENSE",
"keywords": [
"collections",
"data structures",
"data"
]
}
}

0 comments on commit 9ff8404

Please sign in to comment.