Skip to content

test: test

test: test #2

name: Publish Release Artifacts
on:
# release:
# types: [published]
push:
branches:
- 'helm-develop'
jobs:
publish-artifacts:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# - name: Download Artifacts
# run: |
# echo "Release Tag: ${{ github.event.release.tag_name }}"
# ./scripts/github/release-artifacts.sh --tag "${{ github.event.release.tag_name }}" --workflow "Release Artifacts" --repo-org "${{ github.repository_owner }}" download
# env:
# GITHUB_TOKEN: ${{ secrets.ORG_CI_GITHUB }}
- name: Upload Artifacts
run: |
#repos="mayastor-extensions mayastor-control-plane mayastor"
#./scripts/github/release-artifacts.sh --tag "${{ github.event.release.tag_name }}" --repo-org "${{ github.repository_owner }}" --upload "$repos" upload
echo "test" > test.txt
gh release upload "v1.0.9" --clobber test.txt --repo "mayastor"
env:
GITHUB_TOKEN: ${{ secrets.ORG_CI_GITHUB }}