Remove legacy sign in method migration for office 365 and smartschool #1846
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 Naos | |
on: | |
workflow_call: | |
workflow_dispatch: | |
pull_request: | |
types: | |
- labeled | |
concurrency: deploy-naos | |
jobs: | |
deploy: | |
if: ${{ github.event.action != 'labeled' || (github.event.action == 'labeled' && github.event.label.name == 'deploy naos') }} | |
environment: | |
name: naos | |
url: https://naos.ugent.be | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install SSH key | |
uses: shimataro/ssh-key-action@v2 | |
with: | |
key: ${{ secrets.MESTRA_KEY }} | |
known_hosts: ${{ secrets.MESTRA_HOST }} | |
- name: Run deploy | |
run: | | |
echo "deploy naos $GITHUB_SHA" | ssh -p 4840 [email protected] | |
- name: Remove deploy label | |
if: github.event.action == 'labeled' | |
uses: buildsville/[email protected] | |
with: | |
token: ${{secrets.GITHUB_TOKEN}} | |
label: deploy naos | |
type: remove |