forked from eosnetworkfoundation/eos-evm-contract
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BLOCK-2590 - Added an empty release workflow
- Loading branch information
1 parent
398f218
commit 6920767
Showing
1 changed file
with
37 additions
and
0 deletions.
There are no files selected for viewing
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
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 }} |