diff --git a/.github/workflows/build-publish-deploy.yml b/.github/workflows/build-publish-deploy.yml new file mode 100644 index 0000000..ab8af03 --- /dev/null +++ b/.github/workflows/build-publish-deploy.yml @@ -0,0 +1,72 @@ +# https://docs.github.com/en/actions/publishing-packages/publishing-docker-images +name: Create and publish gwfh + +on: + push: + tags: "**" + branches: + - "master" + - "dev" + +env: + REGISTRY: ghcr.io + IMAGE_NAME: ${{ github.repository }} + +jobs: + build-and-push-image: + runs-on: ubuntu-latest + permissions: + contents: read + packages: write + + steps: + - name: Checkout repository + uses: actions/checkout@v3 + + - name: Log in to the Container registry + uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9 + with: + registry: ${{ env.REGISTRY }} + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + + - name: Extract metadata (tags, labels) for Docker + id: meta + uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38 + with: + images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} + + - name: Build and push Docker image + uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc + with: + context: . + push: true + tags: | + ${{ steps.meta.outputs.tags }} + ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.sha }} + labels: ${{ steps.meta.outputs.labels }} + + - name: Connect to tailscale network + uses: tailscale/github-action@v2 + with: + oauth-client-id: ${{ secrets.TS_OAUTH_CLIENT_ID }} + oauth-secret: ${{ secrets.TS_OAUTH_SECRET }} + tags: tag:ci + + - name: Set image on dev cluster + if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/dev' }} + uses: actions-hub/kubectl@1.26.6 + env: + KUBE_CONFIG: ${{ secrets.KUBE_CONFIG_DEV }} + NAMESPACE: gwfh-dev + with: + args: -n ${{ env.NAMESPACE }} set image deployment/app app=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.sha }} + + - name: Set image on prod cluster + if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }} + uses: actions-hub/kubectl@1.26.6 + env: + KUBE_CONFIG: ${{ secrets.KUBE_CONFIG_PROD }} + NAMESPACE: gwfh-prod + with: + args: -n ${{ env.NAMESPACE }} set image deployment/app app=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ github.sha }} \ No newline at end of file diff --git a/.github/workflows/build-publish.yml b/.github/workflows/build-publish.yml deleted file mode 100644 index 9900eea..0000000 --- a/.github/workflows/build-publish.yml +++ /dev/null @@ -1,45 +0,0 @@ -# https://docs.github.com/en/actions/publishing-packages/publishing-docker-images -name: Create and publish gwfh - -on: - push: - tags: "**" - branches: - - "master" - - "dev" - -env: - REGISTRY: ghcr.io - IMAGE_NAME: ${{ github.repository }} - -jobs: - build-and-push-image: - runs-on: ubuntu-latest - permissions: - contents: read - packages: write - - steps: - - name: Checkout repository - uses: actions/checkout@v3 - - - name: Log in to the Container registry - uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9 - with: - registry: ${{ env.REGISTRY }} - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} - - - name: Extract metadata (tags, labels) for Docker - id: meta - uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38 - with: - images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} - - - name: Build and push Docker image - uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc - with: - context: . - push: true - tags: ${{ steps.meta.outputs.tags }} - labels: ${{ steps.meta.outputs.labels }} \ No newline at end of file