Bump net module version after dede110c6441ea6e60e7a33081e5d3992369f3c4 #72
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: Docker Image | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
paths: | |
- '.github/workflows/build.yaml' | |
- '.github/workflows/dockerimage.yaml' | |
- 'utils/docker/**' | |
jobs: | |
build: | |
if: github.event.repository.fork == false | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: docker/setup-buildx-action@v3 | |
- uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.CI_PAT }} | |
- uses: docker/build-push-action@v5 | |
with: | |
push: true | |
context: utils/docker | |
tags: ghcr.io/multitheftauto/mtasa-blue-build:latest |