diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 8f0036c..619ffd2 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -7,7 +7,7 @@ on: jobs: build: - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Deploy Image diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..c36d44e --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,18 @@ +name: Deploy + +on: + push: + branches: + - master + pull_request: + types: [opened, synchronize] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Build Image + run: bash scripts/build.sh + env: + NAME: latest