From 0b511815f7259e3b1ce921a99f235725ad476f71 Mon Sep 17 00:00:00 2001 From: ellenyuX Date: Mon, 12 Aug 2024 15:00:40 +0200 Subject: [PATCH 1/2] Renamed workflows to understandable names --- .github/workflows/deploy-dev-environment.yml | 78 +++++++++++++++++++ .../deploy-production-environment.yml | 60 ++++++++++++++ 2 files changed, 138 insertions(+) create mode 100644 .github/workflows/deploy-dev-environment.yml create mode 100644 .github/workflows/deploy-production-environment.yml diff --git a/.github/workflows/deploy-dev-environment.yml b/.github/workflows/deploy-dev-environment.yml new file mode 100644 index 0000000..e899e78 --- /dev/null +++ b/.github/workflows/deploy-dev-environment.yml @@ -0,0 +1,78 @@ +# Docs for the Azure Web Apps Deploy action: https://github.com/Azure/webapps-deploy +# More GitHub Actions for Azure: https://github.com/Azure/actions +# More info on Python, GitHub Actions, and Azure App Service: https://aka.ms/python-webapps-actions + +name: Build and deploy Python app to Azure Web App - tekniskmuseumbackendmultiplayer-dev + +on: + push: + branches: + - develop + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + - name: Set up Python version + uses: actions/setup-python@v1 + with: + python-version: '3.11' + + - name: Create and start virtual environment + run: | + python -m venv venv + source venv/bin/activate + + - name: Install dependencies + run: pip install -r requirements.txt + + # Optional: Add step to run tests here (PyTest, Django test suites, etc.) + + - name: Zip artifact for deployment + run: zip release.zip ./* -r + + - name: Upload artifact for deployment jobs + uses: actions/upload-artifact@v3 + with: + name: python-app + path: | + release.zip + !venv/ + + deploy: + runs-on: ubuntu-latest + needs: build + environment: + name: 'Production' + url: ${{ steps.deploy-to-webapp.outputs.webapp-url }} + permissions: + id-token: write #This is required for requesting the JWT + + steps: + - name: Download artifact from build job + uses: actions/download-artifact@v3 + with: + name: python-app + + - name: Unzip artifact for deployment + run: unzip release.zip + + + - name: Login to Azure + uses: azure/login@v1 + with: + client-id: ${{ secrets.AZUREAPPSERVICE_CLIENTID_3A285D8EA365406F9F66B9816CB96B03 }} + tenant-id: ${{ secrets.AZUREAPPSERVICE_TENANTID_327C10213F5D46D7BDBBBFA43E1A031F }} + subscription-id: ${{ secrets.AZUREAPPSERVICE_SUBSCRIPTIONID_AC73EA20AF2D460593A249905F2D2E10 }} + + - name: 'Deploy to Azure Web App' + uses: azure/webapps-deploy@v2 + id: deploy-to-webapp + with: + app-name: 'tekniskmuseumbackendmultiplayer-dev' + slot-name: 'Production' + \ No newline at end of file diff --git a/.github/workflows/deploy-production-environment.yml b/.github/workflows/deploy-production-environment.yml new file mode 100644 index 0000000..da2f1ba --- /dev/null +++ b/.github/workflows/deploy-production-environment.yml @@ -0,0 +1,60 @@ +# Docs for the Azure Web Apps Deploy action: https://github.com/Azure/webapps-deploy +# More GitHub Actions for Azure: https://github.com/Azure/actions +# More info on Python, GitHub Actions, and Azure App Service: https://aka.ms/python-webapps-actions + +name: Deploy to teknisk museum Production(ambitious-pond) + +on: + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + + - name: Set up Python version + uses: actions/setup-python@v1 + with: + python-version: '3.8' + + - name: Create and start virtual environment + run: | + python -m venv venv + source venv/bin/activate + + - name: Install dependencies + run: pip install -r requirements.txt + + # Optional: Add step to run tests here (PyTest, Django test suites, etc.) + + - name: Upload artifact for deployment jobs + uses: actions/upload-artifact@v2 + with: + name: python-app + path: | + . + !venv/ + + deploy: + runs-on: ubuntu-latest + needs: build + environment: + name: 'Production' + url: ${{ steps.deploy-to-webapp.outputs.webapp-url }} + + steps: + - name: Download artifact from build job + uses: actions/download-artifact@v2 + with: + name: python-app + path: . + + - name: 'Deploy to Azure Web App' + uses: azure/webapps-deploy@v2 + id: deploy-to-webapp + with: + app-name: 'tekniskmuseumbackendmultiplayer' + slot-name: 'Production' + publish-profile: ${{ secrets.AZUREAPPSERVICE_PUBLISHPROFILE_C9D678D102F946C2844AE0E61963611B }} From c381e0c691fe1c5f406c731c360b70000d651eb8 Mon Sep 17 00:00:00 2001 From: ellenyuX Date: Mon, 12 Aug 2024 15:04:16 +0200 Subject: [PATCH 2/2] Removed workflows --- ...op_tekniskmuseumbackendmultiplayer-dev.yml | 78 ------------------- ...master_tekniskmuseumbackendmultiplayer.yml | 60 -------------- 2 files changed, 138 deletions(-) delete mode 100644 .github/workflows/develop_tekniskmuseumbackendmultiplayer-dev.yml delete mode 100644 .github/workflows/master_tekniskmuseumbackendmultiplayer.yml diff --git a/.github/workflows/develop_tekniskmuseumbackendmultiplayer-dev.yml b/.github/workflows/develop_tekniskmuseumbackendmultiplayer-dev.yml deleted file mode 100644 index 90bbe70..0000000 --- a/.github/workflows/develop_tekniskmuseumbackendmultiplayer-dev.yml +++ /dev/null @@ -1,78 +0,0 @@ -# Docs for the Azure Web Apps Deploy action: https://github.com/Azure/webapps-deploy -# More GitHub Actions for Azure: https://github.com/Azure/actions -# More info on Python, GitHub Actions, and Azure App Service: https://aka.ms/python-webapps-actions - -name: Build and deploy Python app to Azure Web App - tekniskmuseumbackendmultiplayer-dev - -on: - push: - branches: - - develop - workflow_dispatch: - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v4 - - - name: Set up Python version - uses: actions/setup-python@v1 - with: - python-version: '3.11' - - - name: Create and start virtual environment - run: | - python -m venv venv - source venv/bin/activate - - - name: Install dependencies - run: pip install -r requirements.txt - - # Optional: Add step to run tests here (PyTest, Django test suites, etc.) - - - name: Zip artifact for deployment - run: zip release.zip ./* -r - - - name: Upload artifact for deployment jobs - uses: actions/upload-artifact@v3 - with: - name: python-app - path: | - release.zip - !venv/ - - deploy: - runs-on: ubuntu-latest - needs: build - environment: - name: 'Production' - url: ${{ steps.deploy-to-webapp.outputs.webapp-url }} - permissions: - id-token: write #This is required for requesting the JWT - - steps: - - name: Download artifact from build job - uses: actions/download-artifact@v3 - with: - name: python-app - - - name: Unzip artifact for deployment - run: unzip release.zip - - - - name: Login to Azure - uses: azure/login@v1 - with: - client-id: ${{ secrets.AZUREAPPSERVICE_CLIENTID_3A285D8EA365406F9F66B9816CB96B03 }} - tenant-id: ${{ secrets.AZUREAPPSERVICE_TENANTID_327C10213F5D46D7BDBBBFA43E1A031F }} - subscription-id: ${{ secrets.AZUREAPPSERVICE_SUBSCRIPTIONID_AC73EA20AF2D460593A249905F2D2E10 }} - - - name: 'Deploy to Azure Web App' - uses: azure/webapps-deploy@v2 - id: deploy-to-webapp - with: - app-name: 'tekniskmuseumbackendmultiplayer-dev' - slot-name: 'Production' - \ No newline at end of file diff --git a/.github/workflows/master_tekniskmuseumbackendmultiplayer.yml b/.github/workflows/master_tekniskmuseumbackendmultiplayer.yml deleted file mode 100644 index 8b8f834..0000000 --- a/.github/workflows/master_tekniskmuseumbackendmultiplayer.yml +++ /dev/null @@ -1,60 +0,0 @@ -# Docs for the Azure Web Apps Deploy action: https://github.com/Azure/webapps-deploy -# More GitHub Actions for Azure: https://github.com/Azure/actions -# More info on Python, GitHub Actions, and Azure App Service: https://aka.ms/python-webapps-actions - -name: Deploy to teknisk museum Production(ambitious-pond) - -on: - workflow_dispatch: - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v2 - - - name: Set up Python version - uses: actions/setup-python@v1 - with: - python-version: '3.8' - - - name: Create and start virtual environment - run: | - python -m venv venv - source venv/bin/activate - - - name: Install dependencies - run: pip install -r requirements.txt - - # Optional: Add step to run tests here (PyTest, Django test suites, etc.) - - - name: Upload artifact for deployment jobs - uses: actions/upload-artifact@v2 - with: - name: python-app - path: | - . - !venv/ - - deploy: - runs-on: ubuntu-latest - needs: build - environment: - name: 'Production' - url: ${{ steps.deploy-to-webapp.outputs.webapp-url }} - - steps: - - name: Download artifact from build job - uses: actions/download-artifact@v2 - with: - name: python-app - path: . - - - name: 'Deploy to Azure Web App' - uses: azure/webapps-deploy@v2 - id: deploy-to-webapp - with: - app-name: 'tekniskmuseumbackendmultiplayer' - slot-name: 'Production' - publish-profile: ${{ secrets.AZUREAPPSERVICE_PUBLISHPROFILE_C9D678D102F946C2844AE0E61963611B }}