31 lines
776 B
YAML
31 lines
776 B
YAML
# .gitea/workflows/test.yaml
|
|
# 動作確認用の簡単なワークフロー
|
|
|
|
name: Test Workflow
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- master
|
|
workflow_dispatch: # 手動実行を有効化
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Print Info
|
|
run: |
|
|
echo "✅ Workflow is running!"
|
|
echo "Repository: ${{ github.repository }}"
|
|
echo "Branch: ${{ github.ref }}"
|
|
echo "Event: ${{ github.event_name }}"
|
|
echo "Working Directory: $(pwd)"
|
|
|
|
- name: Check Helm
|
|
run: |
|
|
curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash
|
|
helm version
|
|
|
|
- name: Success
|
|
run: echo "🎉 Test completed successfully!" |