-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
786c4c7
commit 2c249d1
Showing
192 changed files
with
14,858 additions
and
10,838 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
name: Build mac arm64 | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
env: | ||
GITHUB_TOKEN: ${{ secrets.WORKFLOW_TOKEN }} | ||
GH_TOKEN: ${{ secrets.WORKFLOW_TOKEN }} | ||
RUDDERSTACK_CLIENT_ID: ${{ secrets.RUDDERSTACK_CLIENT_ID }} | ||
|
||
jobs: | ||
release-mac-arm64: | ||
runs-on: macos-latest-xlarge | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
with: | ||
submodules: 'recursive' | ||
token: ${{ secrets.pat }} | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '18' | ||
cache: 'yarn' | ||
|
||
- name: Reconfigure git to use HTTP authentication | ||
run: > | ||
git config --global url."https://github.com/".insteadOf | ||
ssh://[email protected]/ | ||
- name: Authenticate with private NPM package | ||
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc | ||
|
||
- name: Install dependencies | ||
run: yarn setup | ||
|
||
- name: Build artifacts. | ||
run: yarn release:mac:arm64 | ||
env: | ||
NOTARIZE: true |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
name: Update AUR | ||
|
||
on: | ||
release: | ||
types: [published] | ||
|
||
jobs: | ||
update-aur: | ||
runs-on: ubuntu-latest | ||
|
||
container: | ||
image: archlinux | ||
|
||
steps: | ||
- name: Install Dependencies | ||
run: | | ||
pacman -Syu --noconfirm wget jq | ||
- name: Download Package | ||
run: | | ||
set -x | ||
latest_version=$(curl -s https://api.github.com/repos/HyperPlay-Gaming/hyperplay-desktop-client/releases/latest | jq -r .tag_name) | ||
version_without_v=$(echo $latest_version | cut -c 2-) | ||
wget https://github.com/HyperPlay-Gaming/hyperplay-desktop-client/releases/download/${latest_version}/hyperplay-${version_without_v}.pacman -O hyperplay.pacman | ||
set +x | ||
if: ${{ success() }} | ||
|
||
- name: Update PKGBUILD | ||
run: | | ||
set -x | ||
latest_version=$(curl -s https://api.github.com/repos/HyperPlay-Gaming/hyperplay-desktop-client/releases/latest | jq -r .tag_name) | ||
pkgver=${latest_version#v} | ||
pkgrel=1 | ||
url="https://github.com/HyperPlay-Gaming/hyperplay-desktop-client" | ||
_filename=hyperplay-${pkgver}.pacman | ||
source=("$url/releases/download/$latest_version/$_filename") | ||
md5sums=($(md5sum hyperplay.pacman | cut -d' ' -f1)) | ||
cat <<EOF > PKGBUILD | ||
# Maintainer: flaviofearn <[email protected]> | ||
# Maintainer: blingus <[email protected]> | ||
pkgname=hyperplay | ||
pkgver=$pkgver | ||
pkgrel=$pkgrel | ||
pkgdesc="An open source Web3 gaming platform." | ||
arch=('x86_64') | ||
url="$url" | ||
license=('GPL3') | ||
depends=('gawk') | ||
_filename=$_filename | ||
source=("$source") | ||
noextract=("$_filename") | ||
md5sums=(${md5sums[@]}) | ||
options=(!strip) | ||
package() { | ||
tar -xJv -C "\$pkgdir" -f "\$srcdir/\$_filename" usr opt | ||
mkdir "\$pkgdir/usr/bin" | ||
ln -s "/opt/HyperPlay/hyperplay" "\$pkgdir/usr/bin/hyperplay" | ||
} | ||
# vim:set ts=2 sw=2 et: syntax=sh | ||
EOF | ||
cat PKGBUILD | ||
set +x | ||
if: ${{ success() }} | ||
|
||
- name: Publish AUR package | ||
uses: KSXGitHub/github-actions-deploy-aur@v2 | ||
with: | ||
pkgname: hyperplay | ||
pkgbuild: ./PKGBUILD | ||
commit_username: ${{ secrets.AUR_USERNAME }} | ||
commit_email: ${{ secrets.AUR_EMAIL }} | ||
ssh_private_key: ${{ secrets.AUR_SSH_PRIVATE }} | ||
commit_message: Update AUR package | ||
ssh_keyscan_types: rsa,dsa,ecdsa,ed25519 |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ env: | |
TEAMID: ${{ secrets.TEAMID }} | ||
|
||
jobs: | ||
build-and-release: | ||
release-x64: | ||
runs-on: macos-latest | ||
|
||
steps: | ||
|
@@ -45,6 +45,38 @@ jobs: | |
run: yarn setup | ||
|
||
- name: Build artifacts. | ||
run: yarn release:mac | ||
run: yarn release:mac:x64 | ||
env: | ||
NOTARIZE: true | ||
|
||
release-arm64: | ||
runs-on: macos-latest-xlarge | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
with: | ||
submodules: 'recursive' | ||
token: ${{ secrets.pat }} | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '18' | ||
cache: 'yarn' | ||
|
||
- name: Reconfigure git to use HTTP authentication | ||
run: > | ||
git config --global url."https://github.com/".insteadOf | ||
ssh://[email protected]/ | ||
- name: Authenticate with private NPM package | ||
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc | ||
|
||
- name: Install dependencies | ||
run: yarn setup | ||
|
||
- name: Build artifacts. | ||
run: yarn release:mac:arm64 | ||
env: | ||
NOTARIZE: true |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
#!/bin/bash | ||
yarn | ||
yarn setup |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
#!/bin/bash | ||
yarn | ||
yarn setup |
This file contains 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
Oops, something went wrong.