Merge branch 'master' of https://github.com/ethereum/remix-project into fastcircle

pull/1754/head
bunsenstraat 3 years ago
commit 16f2ec822c
  1. 15
      .github/workflows/publish-remix-ide.yml
  2. 2
      apps/remix-ide/ci/publishIpfs

@ -0,0 +1,15 @@
name: remix-publish-action
on:
pull_request:
types: [ labeled ]
jobs:
build:
if: ${{ github.event.label.name == 'publish' }}
runs-on: ubuntu-latest
steps:
- run: cd ..
- run: npm install
- run: ls
- run: pwd
- run: nx build remix-ide --with-deps
- run: node ./apps/remix-ide/ci/publishIpfs

@ -3,7 +3,7 @@
const IpfsHttpClient = require('ipfs-http-client')
const { globSource } = IpfsHttpClient
console.log('current folder', process.cwd())
const folder = process.cwd() + '/temp_publish_docker';
const folder = process.cwd() + '/dist/apps/remix-ide';
(async () => {
const host = 'ipfs.remixproject.org'

Loading…
Cancel
Save