Create publish-remix-ide.yml

pull/1760/head^2
yann300 3 years ago committed by GitHub
parent 9162f8f0b5
commit 932502e912
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 18
      .github/workflows/publish-remix-ide.yml

@ -0,0 +1,18 @@
name: remix-publish-action
on:
pull_request:
types: [ labeled ]
description: Publish Remix IDE
inputs:
token:
description: 'GitHub auth token'
default: ${{ github.token }}
author: yann@ethereum.org
jobs:
build:
if: ${{ github.event.label.name == 'publish' }}
runs-on: ubuntu-latest
steps:
run: npm install
run: nx build remix-ide --with-deps
run: node ./apps/remix-ide/ci/publishIpfs
Loading…
Cancel
Save