Skip to content

Commit

Permalink
Merge branch 'main' of github.com:cybercongress/ton-connect-wasm
Browse files Browse the repository at this point in the history
  • Loading branch information
dasein108 committed May 28, 2024
2 parents bf88034 + cb44172 commit aa13ae7
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 1 deletion.
51 changes: 51 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
name: build_cyb

on:
push:
branches:
- main

jobs:
build_app:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [18.14.x]

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}

- name: Set environment variable with commit SHA
run: |
echo "COMMIT_SHA=${{ github.sha }}" >> $GITHUB_ENV
- name: Install dependencies
run: |
cd ./front
yarn install
- name: Build app
run: |
cd ./front
yarn install
- name: Verify build directory
run: |
ls -la
echo "Contents of front directory:"
ls -al front
- name: Deploy 🚀
uses: JamesIves/[email protected]
with:
GITHUB_TOKEN: ${{ secrets.ACTIONS_DEPLOY_ACCESS_TOKEN }}
BRANCH: build
FOLDER: ./front
CLEAN: true
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# ton-connect-wasm
Dapp to utilize telegram wallet connection to cyber passport with abillity to create a cyberlinks.
Dapp to utilize telegram wallet connection to cyber passport with abillity to create a cyberlinks

0 comments on commit aa13ae7

Please sign in to comment.