forked from skeeto/w64devkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
Loading status checks…
Make GitHub Action for building the Dockerfile
1 parent
35f2754
commit a994fc4
Showing
1 changed file
with
16 additions
and
0 deletions.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: main | ||
|
||
on: | ||
push: | ||
branches: [ "master" ] | ||
pull_request: | ||
branches: [ "master" ] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Build the Docker image | ||
run: docker build . --file Dockerfile --tag w64devkit:$(date +%s) | ||
|