21 lines
557 B
YAML
21 lines
557 B
YAML
name: build
|
|
on: push
|
|
# pull_request:
|
|
# types:
|
|
# - closed
|
|
# branches:
|
|
# - main
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
# - name: build
|
|
# working-directory: .docker
|
|
# run: docker build -t git.simonis.lol/sites/file-explorer:latest .
|
|
|
|
- name: login
|
|
run: echo "${{ secrets.DOCKER_PW }}" | docker login git.simonis.lol --username="${{ secrets.DOCKER_USER }}" --password-stdin
|
|
|
|
# - name: push
|
|
# run: docker push git.simonis.lol/sites/file-explorer:latest |