fix command everywhere #827
Workflow file for this run
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: Install Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: '1.22' | |
check-latest: true | |
- name: Run control-plane-api tests | |
run: | | |
cd $GITHUB_WORKSPACE/provisioning/resources/control-plane | |
go test *.go | |
#- name: Setup upterm session | |
# uses: lhotari/action-upterm@v1 | |
# with: | |
# ## limits ssh access and adds the ssh public key for the user which triggered the workflow | |
# limit-access-to-actor: true | |
# ## limits ssh access and adds the ssh public keys of the listed GitHub users | |
# limit-access-to-users: benjben | |
- 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@v2' | |
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@v2' | |
- 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 }} |