diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index aabe810..8612d5e 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -6,10 +6,10 @@ env: NAMESPACE: "landing" jobs: build: - runs-on: [arc-runner-set] + runs-on: self-hosted steps: - name: Get repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 - run: docker login -u ${{ secrets.DOCKER_REGISTRY_USER }} -p ${{ secrets.DOCKER_REGISTRY_PASSWORD }} "${{ secrets.DOCKER_REGISTRY }}" - name: Build run: docker build -t "${{ env.DOCKER_TAG }}" . @@ -19,7 +19,7 @@ jobs: deploy: needs: - build - runs-on: [arc-runner-set] + runs-on: self-hosted steps: - run: docker login -u ${{ secrets.DOCKER_REGISTRY_USER }} -p ${{ secrets.DOCKER_REGISTRY_PASSWORD }} "${{ secrets.DOCKER_REGISTRY }}" - run: |