Skip to content

Commit

Permalink
Alt build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Agusx1211 committed Nov 8, 2023
1 parent 48d7152 commit 03b5c82
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 48 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: build dapp

on:
push:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest
name: Build and Push
steps:
- name: git-checkout
uses: actions/checkout@v3

- name: Setup PNPM
uses: pnpm/action-setup@v2
with:
version: 8
run_install: true

- name: Build
run: pnpm build

- name: Push
uses: s0/git-publish-subdir-action@develop
env:
REPO: self
BRANCH: build
FOLDER: dist
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
MESSAGE: 'Build: ({sha}) {msg}'
48 changes: 0 additions & 48 deletions .github/workflows/main.yml

This file was deleted.

0 comments on commit 03b5c82

Please sign in to comment.