mirror of
https://github.com/YuzuZensai/palworld-server-docker.git
synced 2026-01-06 04:32:43 +00:00
Cleanup workflows
This commit is contained in:
24
.github/workflows/docker-hub.yml
vendored
24
.github/workflows/docker-hub.yml
vendored
@@ -1,34 +1,30 @@
|
||||
name: Docker-Image-Dev
|
||||
name: Developer image
|
||||
on:
|
||||
push:
|
||||
branches: [ main ]
|
||||
branches: [main]
|
||||
|
||||
jobs:
|
||||
push:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Login to DockerHub
|
||||
- name: Docker - Login
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
username: ${{ secrets.DOCKER_USERNAME }}
|
||||
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||
|
||||
- name: Docker meta
|
||||
- name: Docker - Metadata
|
||||
id: meta
|
||||
uses: docker/metadata-action@v5
|
||||
with:
|
||||
# list of Docker images to use as base name for tags
|
||||
images: |
|
||||
${{ github.repository }}
|
||||
# generate Docker tags based on the following events/attributes
|
||||
tags: |
|
||||
type=raw,value=dev
|
||||
# always generate latest tag on push
|
||||
images: ${{ github.repository }}
|
||||
tags: type=raw,value=dev
|
||||
flavor: latest=false
|
||||
|
||||
- name: Build and push to DockerHub
|
||||
id: docker_build
|
||||
- name: Docker - Build / Push
|
||||
uses: docker/build-push-action@v5
|
||||
with:
|
||||
push: true
|
||||
|
||||
44
.github/workflows/linting.yml
vendored
44
.github/workflows/linting.yml
vendored
@@ -1,36 +1,48 @@
|
||||
name: Linting
|
||||
on: [pull_request]
|
||||
on:
|
||||
pull_request:
|
||||
|
||||
run-name: Pull request - ${{ github.event.pull_request.number }}
|
||||
jobs:
|
||||
shellcheck:
|
||||
name: Lint - Shell
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v2
|
||||
- name: Run ShellCheck
|
||||
uses: ludeeus/action-shellcheck@master
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Shellcheck
|
||||
uses: ludeeus/action-shellcheck@2.0.0
|
||||
|
||||
dockerlint:
|
||||
name: Lint - Docker
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v2
|
||||
- uses: hadolint/hadolint-action@v2.0.0
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- uses: hadolint/hadolint-action@v3.1.0
|
||||
with:
|
||||
dockerfile: Dockerfile
|
||||
lint: 'hadolint'
|
||||
|
||||
markdownlint:
|
||||
name: Lint - Markdown
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Check out code
|
||||
uses: actions/checkout@v2
|
||||
- uses: DavidAnson/markdownlint-cli2-action@v15
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Lint - Markdown
|
||||
uses: DavidAnson/markdownlint-cli2-action@v15
|
||||
with:
|
||||
config: '.markdownlint.jsonc'
|
||||
globs: '**/*.md'
|
||||
config: ".markdownlint.jsonc"
|
||||
globs: "**/*.md"
|
||||
|
||||
test-build:
|
||||
name: Docker - Build
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Build the Image
|
||||
uses: docker/build-push-action@v2
|
||||
- name: Docker - Build
|
||||
uses: docker/build-push-action@v5
|
||||
with:
|
||||
push: false
|
||||
13
.github/workflows/release.yml
vendored
13
.github/workflows/release.yml
vendored
@@ -7,15 +7,16 @@ jobs:
|
||||
release:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Login to DockerHub
|
||||
- name: Docker - Login
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
username: ${{ secrets.DOCKER_USERNAME }}
|
||||
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||
|
||||
- name: Docker meta
|
||||
- name: Docker - Metadata
|
||||
id: meta
|
||||
uses: docker/metadata-action@v5
|
||||
with:
|
||||
@@ -28,9 +29,9 @@ jobs:
|
||||
type=semver,pattern=v{{major}}.{{minor}}
|
||||
type=semver,pattern=v{{major}}
|
||||
# always generate latest tag on push
|
||||
flavor: |
|
||||
latest=true
|
||||
- name: Build and push to DockerHub & GitHub Packages
|
||||
flavor: latest=true
|
||||
|
||||
- name: Docker - Build / Push
|
||||
id: docker_build
|
||||
uses: docker/build-push-action@v5
|
||||
with:
|
||||
|
||||
Reference in New Issue
Block a user