Skip to content

Merge pull request #1043 from makerdao/VoteWizard-patch-1 #1898

Merge pull request #1043 from makerdao/VoteWizard-patch-1

Merge pull request #1043 from makerdao/VoteWizard-patch-1 #1898

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: IPFS
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches: [ master, RFC, Accepted ]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- name: Upload to IPFS
uses: aquiladev/ipfs-action@master
with:
# Directory path to upload
path: ../mips
# Type of target service to upload. Supported services [ipfs]
service: ipfs # optional, default is ipfs
# IPFS host
host: ipfs.komputing.org # optional, default is ipfs.komputing.org
# IPFS port
port: 443 # optional, default is 443
# IPFS protocol
protocol: https # optional, default is https
# Request timeout
timeout: 60000 # optional, default is 60000
# Level of verbosity
verbose: true