Skip to content

turned_OFF_RB_port

turned_OFF_RB_port #12

Workflow file for this run

name: "MetaCall Distributable Windows Release"
on:
workflow_dispatch:
pull_request:
push:
tags:
- 'v*.*.*'
branches:
- master
jobs:
build:
runs-on: windows-2019
steps:
- uses: actions/checkout@v2
- uses: ilammy/msvc-dev-cmd@v1
with:
arch: amd64
- name: Build
shell: powershell
run: .\build.bat
- name: Test
shell: powershell
run: .\test.bat
- name: Release
if: startsWith(github.ref, 'refs/tags/v')
uses: softprops/action-gh-release@v1
with:
files: metacall-tarball-win-x64.zip
fail_on_unmatched_files: true
- name: Trigger Install Test Workflow
uses: convictional/trigger-workflow-and-wait@v1.6.1
if: startsWith(github.ref, 'refs/tags/v')
with:
owner: metacall
repo: install
github_token: ${{ secrets.G_PERSONAL_ACCESS_TOKEN }}
workflow_file_name: test-windows.yml
wait_workflow: true
ref: master