mirror of
https://github.com/rclone/rclone.git
synced 2024-11-07 17:14:44 +01:00
964088affa
This updates the actions to only run event-based workflow scripts under the rclone repository only and not forks. It also adds the ability to manually trigger a build from a branch in rclone repository and forks. Fixes #5272
27 lines
757 B
YAML
27 lines
757 B
YAML
name: Docker beta build
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
build:
|
|
if: github.repository == 'rclone/rclone'
|
|
runs-on: ubuntu-latest
|
|
name: Build image job
|
|
steps:
|
|
- name: Checkout master
|
|
uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Build and publish image
|
|
uses: ilteoood/docker_buildx@1.1.0
|
|
with:
|
|
tag: beta
|
|
imageName: rclone/rclone
|
|
platform: linux/amd64,linux/386,linux/arm64,linux/arm/v7
|
|
publish: true
|
|
dockerHubUser: ${{ secrets.DOCKER_HUB_USER }}
|
|
dockerHubPassword: ${{ secrets.DOCKER_HUB_PASSWORD }}
|