Merge pull request #167 from gisce/61462_fix_localize_requires_language #50
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy branches | |
on: | |
push: | |
branches: [ v5_backport ] | |
concurrency: | |
group: ${{ github.workflow }} | |
cancel-in-progress: false | |
env: | |
HOME: /home/ci_repos | |
SCRIPTS_PATH: /home/ci_repos/ci_scripts | |
USER: ci_repos | |
permissions: | |
actions: write | |
checks: write | |
contents: write | |
deployments: write | |
issues: write | |
pull-requests: write | |
repository-projects: write | |
statuses: read | |
jobs: | |
deploy: | |
runs-on: [self-hosted, Keroberos] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Update packages | |
run: | | |
. $SCRIPTS_PATH/load_pyenv.sh | |
pyenv activate deploy | |
pip install --upgrade apply_pr | |
pip install --upgrade giscemultitools | |
- name: Get projects and commits info | |
env: | |
GITHUB_TOKEN: ${{ secrets.RO_GH_ACTIONS_TOKEN }} | |
run: | | |
. $SCRIPTS_PATH/load_pyenv.sh | |
pyenv activate deploy | |
echo 'PROJECTS_INFO<<EOF' >> $GITHUB_ENV | |
gisce_github get-commits-sha-from-merge-commit --owner ${{ github.repository_owner }} --repository ${{ github.event.repository.name }} --sha ${{ github.sha }} >> $GITHUB_ENV | |
echo 'EOF' >> $GITHUB_ENV | |
- name: Deploy PR | |
env: | |
WORKSPACE: ${{github.workspace}}/.. | |
GITHUB_TOKEN: ${{github.token}} | |
APPLY_PR_NO_SUDO_MODE: 1 | |
run: | | |
. $SCRIPTS_PATH/load_pyenv.sh | |
pyenv activate deploy | |
git config user.name Release Bot | |
git config user.email [email protected] | |
pr_number=$( echo '${{ env.PROJECTS_INFO }}' | jq -r '.pullRequest.number' ) | |
pr_url=$( echo '${{ env.PROJECTS_INFO }}' | jq -r '.pullRequest.url' ) | |
pr_title=$( echo '${{ env.PROJECTS_INFO }}' | jq -r '.pullRequest.title' ) | |
pr_base_branch=$( echo '${{ env.PROJECTS_INFO }}' | jq -r '.pullRequest.baseRefName' ) | |
ex_code=0 | |
for row in $( echo '${{ env.PROJECTS_INFO }}' | jq -r '.projectItems[] | @base64' ); do | |
_jq() { | |
echo "${row}" | base64 --decode | jq -r "${1}" | |
} | |
done_opt=$(_jq '.field_column_options.Done') | |
error_opt=$(_jq '.field_column_options.Error') | |
if [[ $(_jq '.card_state') == 'Todo' ]]; | |
then | |
(git remote set-branches --add origin $(_jq '.project_name') && git fetch origin $(_jq '.project_name') && git checkout $(_jq '.project_name') && (printf '$USER\n' | sastre deploy --host=ssh://$USER@localhost --sudo_user=$USER --src=$WORKSPACE --force-hostname=$(_jq '.project_name') --pr=$pr_number --repository=${{ github.event.repository.name }} --environ test --skip-rolling-check --exit-code-failure --no-set-label) && git push origin $(_jq '.project_name') && (GITHUB_TOKEN=${{ secrets.RO_GH_ACTIONS_TOKEN }} && gisce_github update-projectv2-card-from-id --owner ${{ github.repository_owner }} --repository ${{ github.event.repository.name }} --project-id $(_jq '.project_id') --item-id $(_jq '.card_id') --field-id $(_jq '.field_column_id') --value $done_opt)) || (GITHUB_TOKEN=${{ secrets.RO_GH_ACTIONS_TOKEN }} && gisce_github update-projectv2-card-from-id --owner ${{ github.repository_owner }} --repository ${{ github.event.repository.name }} --project-id $(_jq '.project_id') --item-id $(_jq '.card_id') --field-id $(_jq '.field_column_id') --value $error_opt && gisce_slack slack-notify --hook ${{ secrets.RELEASE_MASTER_WEBHOOK }} --title "Failed release" --icon "🔥" --message "Error deploying: $pr_url Into: https://github.com/${{ github.repository }}/tree/$(_jq '.project_name') Project: $(_jq '.project_url')" --origin "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" && ex_code=1) | |
fi | |
done | |
exit $ex_code | |