Revert "bump alephium/alephium to v3.6.3, alephium/explorer-backend to v2.2.1, mgarciate/alephium-frontend to 1.10.3" #172
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Main" | |
on: | |
workflow_dispatch: | |
inputs: | |
bump: | |
description: "Bump type, must be: patch" | |
required: true | |
pull_request: | |
push: | |
branches: | |
- "master" | |
- "main" | |
- "v[0-9]+.[0-9]+.[0-9]+" | |
paths-ignore: | |
- "README.md" | |
jobs: | |
build-test: | |
runs-on: ubuntu-latest | |
name: Build test | |
if: github.event_name != 'push' | |
steps: | |
- uses: actions/checkout@v4 | |
- run: npx @dappnode/dappnodesdk build --skip_save | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Publish | |
run: npx @dappnode/dappnodesdk publish patch --dappnode_team_preset | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
DEVELOPER_ADDRESS: "0xf35960302a07022aba880dffaec2fdd64d5bf1c1" |