Create first workflow #1
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: Publish release on github | ||
on: | ||
push: | ||
tags: | ||
- '*' | ||
jobs: | ||
build: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: | ||
- ubuntu-latest | ||
go: | ||
- '1.20' | ||
steps: | ||
- name: checkout qe-platform repo | ||
uses: actions/checkout@master | ||
with: | ||
name: https://gitlab.cee.redhat.com/crc/qe-platform | ||
ref: master | ||
- name: Show Working directory | ||
run: ls | ||
- name: run script | ||
run: echo ${{ <context> }} | ||
Check failure on line 25 in .github/workflows/main.yml GitHub Actions / Publish release on githubInvalid workflow file
Check failure on line 25 in .github/workflows/main.yml GitHub Actions / Publish release on githubInvalid workflow file
|