Create deploy_multiple.yml #1
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: Deploy CI/CD | ||
on: | ||
push: | ||
tags: | ||
- 'v*.*.*' | ||
branches: | ||
- 'main' | ||
- 'environments' | ||
workflow_dispatch: | ||
jobs: | ||
build: | ||
runs-on: ubutntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
environment: [ dev, sandbox ] | ||
environment: ${{ matrix.environment }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Execute | ||
run: | | ||
Check failure on line 23 in .github/workflows/deploy_multiple.yml GitHub Actions / Deploy CI/CDInvalid workflow file
|
||
echo ${{ github.ref_type }} | ||
echo ${{ github.ref_name }} | ||
echo ${{ github.sha }} | ||
echo ${{ var.DATA }} |