.gitea/workflows/test.yaml を削除
This commit is contained in:
@@ -1,31 +0,0 @@
|
||||
# .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!"
|
||||
Reference in New Issue
Block a user