name: Test Workflow on: push: branches: - chrome-docker tags: - v*.*.* permissions: contents: write jobs: hello_world: runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v4 - name: List files run: ls -la - name: Create zip file run: | mkdir -p dist zip -r dist/buctAuthentication.zip . -x "*.git*" -x "dist/*" - name: List dist files run: ls -la dist - name: Upload Release if: startsWith(github.ref, 'refs/tags/') uses: softprops/action-gh-release@v2 with: files: dist/buctAuthentication.zip