Skip to content

Commit

Permalink
Update for 2.14.0-beta.dev.20240823.9
Browse files Browse the repository at this point in the history
  • Loading branch information
Spacetech committed Aug 24, 2024
1 parent ba0422e commit 4111f92
Show file tree
Hide file tree
Showing 3 changed files with 72 additions and 5 deletions.
67 changes: 67 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
on:
push:
branches:
- main
- master
- development

env:
REPO_NAME: ${{ github.event.repository.name }}
EXTRA_ARGS: ${{ github.ref == 'refs/heads/development' && '--prerelease' || '' }}

jobs:
build_and_release:
name: Build and Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: "20.x"

- name: Parse package.json
id: set_var
run: |
content=`cat ./package.json`
content="${content//'%'/'%25'}"
content="${content//$'\n'/'%0A'}"
content="${content//$'\r'/'%0D'}"
echo "::set-output name=packageJson::$content"
- run: |
echo "${{fromJson(steps.set_var.outputs.packageJson).version}}"
echo "${{fromJson(steps.set_var.outputs.packageJson).devDependencies['@wayward/types']}}"
typesversion=$(echo ${{fromJson(steps.set_var.outputs.packageJson).devDependencies['@wayward/types']}} | cut -c 2-999)
echo "$typesversion"
echo "TYPES_VERSION=$typesversion" >> $GITHUB_ENV
- name: npm install
run: npm install

- name: npm run build
run: npm run build

- name: zip
run: |
cd ../
zip -r $REPO_NAME.zip $REPO_NAME -x "$REPO_NAME/.git/*" "$REPO_NAME/.github/*" "$REPO_NAME/node_modules/*"
- name: Delete release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
continue-on-error: true
run: |
gh release delete "v$TYPES_VERSION" --cleanup-tag --yes
- name: Create release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ github.ref_name }}
run: |
gh release create "v$TYPES_VERSION" \
--repo="$GITHUB_REPOSITORY" \
--target="${{ github.sha }}" \
--title="v$TYPES_VERSION" \
--generate-notes \
$EXTRA_ARGS \
"../$REPO_NAME.zip#$REPO_NAME.zip"
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
"watch": "tsc --build --watch --pretty --preserveWatchOutput"
},
"devDependencies": {
"@wayward/types": "^2.14.0-beta.dev.20240823.8"
"@wayward/types": "^2.14.0-beta.dev.20240823.9"
}
}

0 comments on commit 4111f92

Please sign in to comment.