Skip to content

Commit

Permalink
BLOCK-2590 - Added an empty release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
igor-sikachyna committed Nov 21, 2024
1 parent 398f218 commit 6920767
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: "Release EVM contract"
on:
workflow_dispatch:
inputs:
contracts:
description: Release version tag
required: true
eosio:
description: EOSIO release tag
required: true
cdt-tag:
description: CDT release tag
required: true
cdt-version:
description: CDT version where cdt being installed
required: false
default: 3.1.0
jobs:
# Setup Main Dependencies Here
setup-dependencies:
permissions:
contents: 'read'
id-token: 'write'
name: "Build contracts"
timeout-minutes: 10
runs-on: ubuntu-latest
container:
# This repository can be found / pushed to in: ultraio/eosio-docker-starter
image: quay.io/ultra.io/eosio-docker-starter:5.0.0
options: --cpus 2
steps:
- name: Get Token
id: application_token
uses: peter-murray/workflow-application-token-action@v2
with:
application_id: ${{ secrets.APPLICATION_ID }}
application_private_key: ${{ secrets.APPLICATION_PRIVATE_KEY }}

0 comments on commit 6920767

Please sign in to comment.