Prepare for 0.19.1 release #722
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: Publish Mini | |
on: | |
push: | |
jobs: | |
publish: | |
name: Publish artifacts | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Provision a local Mini instance | |
run: ansible-playbook -i $GITHUB_WORKSPACE/provisioning/inventory $GITHUB_WORKSPACE/provisioning/local_setup.yml --connection=local --become | |
- id: 'auth' | |
if: startsWith(github.ref, 'refs/tags/') | |
uses: 'google-github-actions/auth@v0' | |
with: | |
credentials_json: '${{ secrets.GOOGLE_APPLICATION_CREDENTIALS_JSON_BASE64 }}' | |
- name: 'Set up Cloud SDK' | |
if: startsWith(github.ref, 'refs/tags/') | |
uses: 'google-github-actions/setup-gcloud@v0' | |
- name: SSH config for Ansible | |
run: mkdir ~/.ssh && echo -e "Host 127.0.0.1\nHostKeyAlgorithms +ssh-rsa\nPubkeyAcceptedKeyTypes +ssh-rsa" >> ~/.ssh/config | |
- name: Publish artifact based on cloud and size | |
if: startsWith(github.ref, 'refs/tags/') | |
env: | |
AWS_DEPLOY_ACCESS_KEY: ${{ secrets.AWS_DEPLOY_ACCESS_KEY }} | |
AWS_DEPLOY_SECRET_KEY: ${{ secrets.AWS_DEPLOY_SECRET_KEY }} | |
GOOGLE_APPLICATION_CREDENTIALS_JSON_BASE64: ${{ secrets.GOOGLE_APPLICATION_CREDENTIALS_JSON_BASE64 }} | |
run: $GITHUB_WORKSPACE/.github/workflows/deploy.sh ${{ github.ref_name }} |