21 lines
543 B
YAML
21 lines
543 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_PASSWORD }}" | docker login -u "${{ secrets.DOCKER_USERNAME }}" --password-stdin
|
|
|
|
# - name: push
|
|
# run: docker push git.simonis.lol/sites/file-explorer:latest |