feat: 방 메타정보 조회 시 태그도 함께 반환하도록 수정 #31
This file contains hidden or 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 | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: ["main"] | |
| concurrency: | |
| group: deploy-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build-image: | |
| uses: ./.github/workflows/build-image.yaml | |
| permissions: | |
| contents: read | |
| packages: write | |
| with: | |
| registry: ghcr.io | |
| image: ghcr.io/queuing-org/backend | |
| platform: linux/amd64,linux/arm64 | |
| secrets: inherit | |
| deploy-dev: | |
| needs: build-image | |
| uses: ./.github/workflows/deploy-with-nerdctl.yaml | |
| permissions: | |
| contents: read | |
| packages: read | |
| with: | |
| environment_name: develop | |
| registry: ghcr.io | |
| image: ghcr.io/queuing-org/backend | |
| image_tag: ${{ needs.build-image.outputs.image-tag }} | |
| secrets: inherit |