name: convert-to-xml run-name: ${{ github.actor }} is learning GitHub Actions on: push: tags: - '*' jobs: deploy: runs-on: ubuntu-latest steps: - uses: http://sigyl.com:3000/actions/checkout@v3.5.4 - name: ls run: ls - uses: actions/setup-node@v3 with: node-version: '20' - uses: http://sigyl.com:3000/actions/batch2yaml@master with: action: xml path: '.' - name: GIT commit and push all changed files env: CI_COMMIT_MESSAGE: Continuous Integration Build Artifacts CI_COMMIT_AUTHOR: Continuous Integration run: | echo ${{ github.ref_name }} git config --global user.name "${{ env.CI_COMMIT_AUTHOR }}" git config --global user.email "username@users.noreply.github.com" git add -A git commit -a -m "${{ env.CI_COMMIT_MESSAGE }} yml files converted to xml" -f origin HEAD:refs/heads/deployed-${{ github.ref_name }}