test #13
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: backend deploy | |
on: | |
push: | |
branches: [ "cicd-test" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.22.5 | |
- name: Create .env file from secret | |
run: echo "${{ secrets.ENV }}" > .env | |
- name: Build | |
run: | | |
mkdir -p ./bin | |
go build -v -o ./bin/techbloghub ./... | |
- name: Login to DockerHub | |
uses: docker/login-action@v1 | |
with: | |
username: ${{secrets.DOCKER_HUB_USERNAME}} | |
password: ${{secrets.DOCKER_HUB_TOKEN}} | |
- name: build and release to DockerHub | |
env: | |
NAME: ${{secrets.DOCKER_HUB_USERNAME}} | |
REPO: ${{secrets.DOCKER_HUB_REPO}} | |
run: | | |
docker build --tag $REPO . | |
docker tag $REPO:latest $NAME/$REPO:latest | |
docker push $NAME/$REPO:latest | |
deploy: | |
runs-on: self-hosted | |
steps: | |
- name: change permission | |
run: | | |
sudo chown -R ubuntu:ubuntu /home/ubuntu/actions-runner/_work/server | |
- uses: actions/checkout@v3 | |
- name: deploy | |
run: sudo cd /home/ubuntu && sudo ./deploy.sh |